在Angular中,当使用NgModel绑定时,如果尝试读取未定义的属性,会导致"Cannot read property 'undefined' of null"错误。这通常会发生在表单控件的初始值未正确设置的情况下。
为了解决这个问题,可以采取以下步骤:
export class MyComponent {
myProperty: string; // 默认值为undefined
constructor() {
this.myProperty = ''; // 或者设置一个默认值
}
}
在上述示例中,NgModel绑定将只有在myProperty不为null或undefined时才会生效。
export class MyComponent implements OnInit {
myProperty: { subProperty: string };
ngOnInit() {
this.myProperty = { subProperty: '' };
}
}
通过以上步骤,您应该能够解决"Angular NgModel绑定无法读取未定义的属性"的问题,并正确地绑定和读取属性的值。