我需要在Angular 2中使用自定义管道在客户端显示数据。
我想在表格中显示数据。
数据作为数组存储在服务器上。
答案 0 :(得分:0)
理想情况下,您可以将模型序列化为json,并在url端点上提供数据
your.domain.com/api/model
。
然后您可以使用Angular 2的Http服务来请求JSON。 https://angular.io/docs/ts/latest/guide/server-communication.html#!#fetch-data
显示数据将涉及在表行上使用ngFor。 https://angular.io/docs/ts/latest/guide/displaying-data.html#!#ngFor