Angular2嵌套ngFor

时间:2016-02-06 13:34:43

标签: angular angular2-template

我需要在 Angular2 中执行相同的操作:

<?php
foreach ($somethings as $something) {
    foreach ($something->children as $child) {
        echo '<tr>...</tr>';
    }
}

这可以通过 ngFor 实现,而不是在<table><tr>之间添加新元素吗?

5 个答案:

答案 0 :(得分:22)

我有一个可能类似于你想要的样本:

<table id="spreadsheet">
    <tr *ngFor="let row of visibleRows">
        <td class="row-number-column">{{row.rowIndex}}</td>
        <td *ngFor="let col of row.columns">
            <input  data-id="{{col.rowIndex}}-{{col.columnIndex}}" [value]="col.cellValue" (input)="col.cellValue = $event.target.value" (click)="model.selectColumn(col)" (keyup)="navigate($event)" />
        </td>
    </tr>
</table>

我用这个来渲染一个看网格的电子表格,如下所示:http://www.syntaxsuccess.com/angular-2-samples/#/demo/spreadsheet

答案 1 :(得分:8)

如果您需要2个或更多foreach循环来绘制表格的行,则需要执行与以下内容类似的操作。

<template ngFor let-rule [ngForOf]="model.rules" let-ruleIndex="index">
    <template ngFor let-clause [ngForOf]="rule.clauses" let-clauseIndex="index">
        <tr>
            <td>{{clause.name}}</td>
        </tr>
    </template>
</template>    

答案 2 :(得分:5)

使用ngFor语法的“模板”形式,如下所示。它比简单的*ngFor版本更冗长,但这就是你如何在没有输出html的情况下实现循环(直到你打算这样做)。一个例外:您仍会在<table>内获得HTML评论,但我希望没问题。这是一个有效的傻瓜:http://plnkr.co/edit/KLJFEQlwelPJfNZYVHrO?p=preview

@Component({
  selector: 'my-app',
  providers: [],
  directives: [],
  template: `
  <table>
    <template ngFor #something [ngForOf]="somethings" #i="index">
      <template ngFor #child [ngForOf]="something.children" #j="index">
      <tr>{{child}}</tr>
      </template>
    </template>
  </table>
  `
})
export class App {
  private somethings: string[][] = [
    {children: ['foo1', 'bar1', 'baz1']},
    {children: ['foo2', 'bar2', 'baz2']},
    {children: ['foo3', 'bar3', 'baz3']},
  ]
}

答案 3 :(得分:1)

模板对我不起作用,但是使用ngForOf的ng-template可以解决问题:

<ng-template ngFor let-parent [ngForOf]="parent" >
    <tr *ngFor="let child of parent.children">
        <td>
            {{ child.field1 }}
        </td>
        <td> 
            {{ child.field2 }}
        </td>
        <td> ... and so one ... </td>
    </tr>
</ng-template>

答案 4 :(得分:0)

我只是在尝试数据库中任何表的显示数据。我是这样做的:

我在Table.component.ts中调用API的TypeScript Ajax:

http.get<ITable>(url, params).subscribe(result => {
  this.tables = result;
}, error => console.error(error));

我的ITable

 interface ITable {
  tableName: string;
  tableColumns: Array<string>;
  tableDatas: Array<Array<any>>;
}

我的table.component.html

<table class='table' *ngIf="tables">
  <thead>
    <tr>
      <th *ngFor="let tableColumn of tables.tableColumns">{{ tableColumn }}</th>
    </tr>
  </thead>
  <tbody>
    <tr *ngFor="let tableData of tables.tableDatas">
      <td *ngFor="let data of tableData">{{ data }}</td>
    </tr>
  </tbody>
</table>