我在Angular 6中遇到了以下函数的以下错误
public getList() {
return this.http.get(environment.serverUrl +'/vmsdata/v1/tftoport/customer/1001')
.toPromise()
.then(response => response.json()
.then(json => {
console.log('data', json.items);
return json.items;
});
}
对于第.then(response => response.json()
行,错误为
[ts] Property 'json' does not exist on type 'Object'
。
对于第.then(json => {
行,错误为[ts] Parameter 'json' implicitly has an 'any' type.
有人可以帮我吗?
答案 0 :(得分:0)
在Angular 6中,您不需要将数据映射到json中,因为默认情况下,angular 6提供json。