this.projectList.map((item) => { console.log(1) )}this.projectList有值但是没有执行里面的代码
时间: 2024-05-13 14:18:02 浏览: 74
if条件满足,代码却不执行
5星 · 资源好评率100%
你的代码中有一个语法错误,应该是这样写:
```
this.projectList.map((item) => { console.log(1) })
```
你的代码中把括号写错了,应该是 `)` 改为 `}`。另外,`map()` 函数只是返回一个新的数组,它并不会改变原数组,所以即使 `this.projectList` 有值,也不会执行 `console.log(1)`。如果想要遍历数组并执行某些操作,可以使用 `forEach()` 函数,例如:
```
this.projectList.forEach((item) => { console.log(item) })
```
这样就可以遍历 `this.projectList` 数组中的每一项,并打印出来了。
阅读全文