我想从网络服务中获取json中的API。我在服务提供商中使用以下代码:
getAll() {
return this.authHttp.get(this.cfg.apiUrl + this.cfg.books)
.toPromise()
.then(rs => {
return Array.of(rs.json());
});
}
并从模块中获取:
this.booksService.getAll().then(books => this.books = books);
但是当我尝试遍历书籍时,我却拒绝了该错误:
NgFor仅支持绑定到数组等Iterables
有人可以帮我弄清楚吗?