0
例如與此JSON:Angular2:ngFor通過對象數組迭代
{
"TableRows": [
{
"Name": "Lord of the Rnis",
"Length": "2:40"
}
],
"Category": "Fantasy"
}
這些類:
export interface IMovies{
Category: string;
TableRows: ITableRows[];
}
export interface ITableRows{
Name: string;
Length: string;
}
以下ngFor邏輯的偉大工程,但它不是我想要的循環:
<tr *ngFor="let row of rows">
<td>{{row.Category}}</td>
<td>{{row.TableRows[0].Name}}</td>
<td></td>
</tr>
這個邏輯不工作:
<tr *ngFor="let row of rows.TableRows">
<td>{{row.Name}}</td>
<td>{{row.Length}}<td>
</tr>
我在這裏做錯了什麼?
什麼是行?一個數組還是Imovies?或者一個ITableRows數組? – Abiezer