我在 Angular 2 中编写了以下代码:
this.http.request('http://thecatapi.com/api/images/get?format=html&results_per_page=10').
subscribe((res: Response) => {
console.log(res);
})
我想在代码中访问响应中的正文字段。“body”字段以下划线开头,表示它是私有字段。当我将其更改为 'console.log(res._body)' 时出现错误。
你知道任何可以在这里帮助我的getter函数吗?