2
this.procFilterResults: any[];
this.procservices.GetProcData(this.selectedServer, this.selectedProjectName,
this.selectedProc, this.procInput,_inputs)
.subscribe(res => {
this.procFilterResults = JSON.parse(res);
this.Keys=Object.keys(this.procFilterResults[0]);
console.log(this.procFilterResults);
},
error => this.errorMessage = <any>error);
<table class="table table-bordered">
<thead>
<th *ngFor="let key of Keys">
{{key}}
</th>
</thead>
<tbody>
<tr *ngFor= 'let res of procFilterResults'>
</tr>
</tbody>
</table>
基於我的輸入,我得到每個請求的新對象。我想將結果綁定到表格。 有沒有什麼方法可以將綁定到HTML表的對象反序列化。使用Angular2將動態對象綁定到Html
這樣做後我得到了不同的錯誤... – Venu
你得到什麼錯誤? –
未處理的承諾拒絕:模板分析錯誤: 由於它不是'td'的已知屬性,因此無法綁定到'ngForIn'。 ( 「
相關問題