我有返回一些数据的服务:
return this._http.get(`api/data`)
.map((response: Response) => response.json());
我怎样才能console.log(response.json())
或有更好的方法来检查共鸣?
答案 0 :(得分:8)
return this._http.get(`api/data`)
.map((response: Response) => {
var result = response.json();
console.log(result);
return result;
});
或更好
return this._http.get(`api/data`)
.map((response: Response) => response.json())
.do(value => console.log(value));
确保您已导入您使用的运算符。