如何在angular4中使用每个

时间:2018-08-21 00:31:19

标签: angular

我有一个疑问,我有2个数组

A=[2,2,3];

enter image description here

我通过推入值来创建两个数组。但是当我将第二个数组与foreach一起使用时,我没有显示值。

b.foreach((test,index)=>{
   console.log(test+"_0");
  }
)

我正在使用这种格式提取值。 是错的吗?需要更改任何内容吗?

2 个答案:

答案 0 :(得分:0)

您需要使用angular和Typescript,

for (let item of this.data) { 
    console.log(item +"_0");
}  

DEMO

答案 1 :(得分:0)

forEach 始终位于camelCase中,

看到这个

b.forEach((test,index) =>{
   console.log(test+"_"+index);
});