在项目开发中拿到的数据是这样的,要循环遍历出来。可是在ng2中好像不能直接遍历Object
array-ngfor.ts
@Component({
selector: 'page-array-ngfor',templateUrl: 'array-ngfor.html',})
export class ArrayNgfor {
selector: 'page-array-ngfor',templateUrl: 'array-ngfor.html',})
export class ArrayNgfor {
constructor() { }
datas: Array
{ num: 1,returnNum: "24" },];
getKeys(item) {
return Object.keys(item);
}
}
array-ngfor.html
重点的是这个方法
结果:
原文链接:https://www.f2er.com/js/39112.html