谁能指导我解决这个问题。
我正在尝试访问地图运算符中 json 响应的内部属性。
return this.http.get('http://localhost:3000/api/businesses', options)
.map((response: Response) => response.json());
这将返回整个响应,但我需要获得该响应的商业属性。
我的 API 端点像这样返回 json 对象
{
sucesses:true,
business:[
{},
{}
]
}
所以我需要访问这个对象并只返回业务数组