angular.js - angular2中如何对ngfor的遍历的项目元素再进行循环渲染?
阿神
阿神 2017-05-15 17:02:57
0
2
562

我拿到的数据:

    var items=[
        { "version": "1", "theme": "Windstorm" ,"age":20},
        { "version": "2", "theme": "Bombasto","age":21},
        { "version": "3", "theme": "Magneta" ,"age":22},
        { "version": "4", "theme": "Tornado" ,"age":23}
    ];
    
    

我的template:

<p>

<p>
      <tr *ngFor="let item of items">
        <td *ngFor="怎么写">怎么写</td>
      </tr>
</p>
</p>


我想对item里的key再进行遍历,拿到对应的value循环渲染到<td>元素中.我的template该怎么写?

...

阿神
阿神

闭关修行中......

reply all(2)
伊谢尔伦

ng2这点让我非常不爽,居然不能天然遍历Object, we can only write it ourselves, in order not to confuse you, I use the simplest way to play,

First is the template part:

<tr *ngFor="let item of items">
    <td *ngFor="let key of getKeys(item)">
        {{ key }} = {{ item[key]  }}
    </td>
</tr>

The following is the Componentlogical part:

@Component({
  selector: 'test',
  templateUrl: 'template.html',
  styleUrls:  ['style.css']
})
export class ItemsComponent {

    //关键就是这个getKeys方法,得自己写,真他妈的
    getKeys(item){
        return Object.keys(item);
    }
}

The method definitely works, just try it and see for yourself

漂亮男人

keys.pipe.ts

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({name: 'keys'})
export class KeysPipe implements PipeTransform {
    transform(value: any, args: string[]): string[] {
        if (typeof(value) !== 'object')
            throw 'keysPipe value must be object';

        return Object.keys(value);
    }
}

app.component.ts

import { Component } from '@angular/core';
import { KeysPipe } from './keys.pipe';

@Component({
    selector: 'app',
    template: `
        <table>
          <tr *ngFor="let item of items">
            <td *ngFor="let key of item | keys">{{key}} - {{item[key]}}</td>
          </tr>
        </table>
    `,
    pipes: [KeysPipe]
})
export class AppComponent {
    items = [
        {'version': '1', 'theme': 'Windstorm', 'age': 20},
        {'version': '2', 'theme': 'Bombasto', 'age': 21},
        {'version': '3', 'theme': 'Magneta', 'age': 22},
        {'version': '4', 'theme': 'Tornado', 'age': 23}
    ];
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template