我正在编写我的angular2应用程序。 我有从数据库和dashboard.component.html获取数据的服务,该服务使用该服务显示获取的数据。
myService:
detailedInfo(rownum:number){
const url='/project/users';
return this.http.get(`${url}/${rownum}`).pipe(map((data:any)=>data));
}
dashboard.component.ts:
resultDetails:any[]=[];
checkInformation(rownum:number) {
console.log("Details are called");
this.myService.detailedInfo(rownum).subscribe(
data=> {
console.log("we got:",data);
this.resultDetails=data;
console.log("length of details:"+this.resultDetails.length);
},
error => {
console.log("Error",error);
}
);
}
dashboard.component.html:
<i (click)="checkInformation(somenumber)"></i>
<table>
<tr *ngFor="let res of resultDetails">
<td >result
<p>any text</p>
</td>
<td>{{res.rownumber}}</td>
</tr>
</table>
console.log
打印正确的结果,但不显示任何内容。我该如何解决这个问题?预先感谢。
答案 0 :(得分:1)
问题出在错误的html
<i (click)="checkInformation(somenumber)"></i>
<table>
<tr *ngFor="let res of resultDetails">
<td >result
<p>any text</p>
</td>
<td>{{res.rownumber}}</td>
</tr>
</tr> <!-- this is extra tr remoe it
</table>
删除多余的tr