Angular6-类型'Object'不存在'json'

时间:2018-08-02 01:21:13

标签: javascript json angular angular6

我在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.

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

在Angular 6中,您不需要将数据映射到json中,因为默认情况下,angular 6提供json。