这是我的数组,在将值推入数组后得到了它。我的问题是我尝试使用for循环和每个循环打印每个值,但不起作用。
for (let asd of this.data){
console.log("check")
console.log(asd);
}
this.data.forEach((test,index) =>{
console.log(test+"_"+index);
});
我没有得到任何结果..有什么不对吗?
答案 0 :(得分:0)
看下面的StackBlitz示例:Array Looping
export class AppComponent implements OnInit {
name = 'Angular';
array = [
{ "user_id": 22, "email": "email1" },
{ "user_id": 23, "email": "email2" }
];
ngOnInit() {
for (let item of this.array) {
console.log(item);
}
}
}