如何在角度2中读取对象的对象

时间:2017-11-07 18:01:10

标签: angular typescript

我有像

这样的对象
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"/>

任何正文都可以帮助我如何读取对象中的嵌套属性。

1 个答案:

答案 0 :(得分:1)

在您的模板中,您可以使用'?'摆脱错误

<input [(ngModel)]="_nodeTypesProps?.props?.description" type="checkbox" id="description"/>