我刚开始使用angular 2.所以我尝试使用Web服务从数据库中显示类别。
这是我的forum.service.ts文件
public getCategories(){
return this.http.get('http://localhost/ForumLaraAngular/public/api/forum').map((res: Response) => res.json());
}
forum.component.ts:
categories:any;
constructor(private forumService:ForumService) { }
ngOnInit(): void {
this.forumService.getCategories().subscribe((data)=>{this.categories=data;})
}
forum.component.html:
<categories>
<ul>
<li *ngFor="let categ of categories"> {{categ.titre}}</li>
</ul>
</categories>
任何帮助,请提前谢谢
答案 0 :(得分:-1)
从选择器
中写出以下代码行<ul>
<li *ngFor="let categ of categories"> {{categ.titre}}</li>
</ul>