错误:对象角度不可用的属性5

时间:2018-02-07 05:53:50

标签: angular typescript

我尝试从对象访问属性但我收到错误。下面是我从服务器获得的json格式.Below是我的json。



{
"result": false,
"messages": "welcome",
"data": [
{
"name": "siva",
"category": true,
"count": 3
}
]
}




及以下是我从对象获取属性的代码



this.dataService.getdata()
.subscribe(data => this.result = data['data'],
error => this.errorMsg = error
);




请指导我在哪里犯了错误。我想从json获取数据属性。 enter image description here

将data.data更改为数据['数据']后,我收到如下错误 enter image description here

1 个答案:

答案 0 :(得分:0)

map添加到return的{​​{1}}值:

getdata