我有像
这样的对象private _nodeTypesProps= {
id: newId,
active: false,
name: "",
color: "",
character: "",
props: {
description: true,
notes: true,
lastModified: true,
senstiveInformation: true,
calculation: true
}
}
我想在模板中阅读道具
<input [(ngModel)]="_nodeTypesProps.props.description" type="checkbox" id="description"/>
任何正文都可以帮助我如何读取对象中的嵌套属性。
答案 0 :(得分:1)
在您的模板中,您可以使用'?'摆脱错误
<input [(ngModel)]="_nodeTypesProps?.props?.description" type="checkbox" id="description"/>