我已经在这个人的头上撞了一会儿,但我终于感到亲近了。我尝试做的是读取我的测试数据,该数据转换为二维数组,并将其内容打印到html中的表中,但我无法弄清楚如何使用ngfor循环虽然那个数据集
这是我的打字稿文件
import { Component } from '@angular/core';
import { Http } from '@angular/http';
@Component({
selector: 'fetchdata',
template: require('./fetchdata.component.html')
})
export class FetchDataComponent {
public tableData: any[][];
constructor(http: Http) {
http.get('/api/SampleData/DatatableData').subscribe(result => {
//This is test data only, could dynamically change
var arr = [
{ ID: 1, Name: "foo", Email: "foo@foo.com" },
{ ID: 2, Name: "bar", Email: "bar@bar.com" },
{ ID: 3, Name: "bar", Email: "bar@bar.com" }
]
var res = arr.map(function (obj) {
return Object.keys(obj).map(function (key) {
return obj[key];
});
});
this.tableData = res;
console.log("Table Data")
console.log(this.tableData)
});
}
}
这是我的html目前不起作用
<p *ngIf="!tableData"><em>Loading...</em></p>
<table class='table' *ngIf="tableData">
<tbody>
<tr *ngFor="let data of tableData; let i = index">
<td>
{{ tableData[data][i] }}
</td>
</tr>
</tbody>
</table>
以下是我console.log(this.tableData)
的输出
我的目标是在表格中将其格式化为
1 | foo | bar@foo.com
2 | bar | foo@bar.com
我最好不要使用模型或界面,因为数据是动态的,它可能随时改变。有谁知道如何使用ngfor循环遍历二维数组并在表中打印其内容?
答案 0 :(得分:3)
就像Marco Luzzara所说的那样,你必须为嵌套数组使用另一个* ngFor。
我回答这个问题只是为了给你一个代码示例:
<table class='table' *ngIf="tableData">
<tbody>
<tr *ngFor="let data of tableData; let i = index">
<td *ngFor="let cell of data">
{{ cell }}
</td>
</tr>
</tbody>
</table>