错误TypeError:无法在控制台中读取未定义的属性“group_status”

时间:2018-01-25 07:45:33

标签: angular angularjs-directive

我在控制台中收到此错误并且此错误不断增加,我正在使用带有接口的ngModel双向绑定。我附上了我的代码屏幕。

屏幕:

这是以json格式调用服务从服务器获取basicinfo的组件部分 This is the component part where getting basicinfo from server in json format calling service

这是我在控制台中获得的错误 This is Error which I am getting in console

HTML部分,我从接口json中获取数据 HTML part where I am fatching data from interface json

这是我正在使用的界面 This is Interface which i am using

1 个答案:

答案 0 :(得分:1)

问题是这一行:

<img name=faceImg width=100 height=100>

将此更改为

[(ngModel)]='basicinfo.website'

[ngModel]='basicinfo?.website' 初始化之前为2路绑定提供初始值

ngModel