ionic3 ngFor指令处理对象

我们知道,在ng1中ng-repeat是可以将对象以K-V的形式进行处理,但是在ng2中ngFor指令是没有类似的这种功能的,那么我们要怎么去处理呢?其实也比较简单,那就是自己写一个管道来进行处理.
1.输入命令ionic g pipe keys创建管道,并在AppModule 中导入
2.代码实现:

@Pipe({
  name: 'keys',
})
export class KeysPipe implements PipeTransform {
  /**
   * Takes a value and makes it lowercase.
   */
  transform(value, args:string[]) : any {
      let keys = [];
      for (let key in value) {
          keys.push({key: key, value: value[key]});
      }
      return keys;
  }
}

3.使用
例如:在home.ts 中定义

items : any;
ngOnInit() {
   this.items = {
      animal : [
        'dog','cat','monkey'
      ],
      transport : [
        'ship','car','air‧plane'
      ]
    }
  }

在home.html中使用:


    
      

key : {{item.key}}

value :{{item.value.toString()}}

最终效果:


ionic3 ngFor指令处理对象_第1张图片
最终效果.png

你可能感兴趣的:(ionic3 ngFor指令处理对象)