嘿,我有一些字段将html和来自后端的数据绑定到我的模型中。 但是,当我单击以编辑数据时,总是说无法读取null值。 我该如何处理?
这是我的html
<div class="form-group">
<input type="text" [(ngModel)]="patient?.Address.Address1" name="address1"
class="form-control input-underline input-lg" id="address1"
placeholder="Address1" maxlength="50" autocomplete="off">
</div>
<div class="form-group">
<input type="text" [(ngModel)]="patient?.Address.Address2" name="address2"
class="form-control input-underline input-lg" id="address2"
placeholder="Address 2" maxlength="50" autocomplete="off">
</div>
<div class="form-group">
<div class="row">
<div class="col-6">
<input type="text" [(ngModel)]="patient?.Address.City" name="city"
class="form-control input-underline input-lg" id="city" inputName
placeholder="City" [required]="isOfficeStaff">
</div>
<div class="col-3">
<select [(ngModel)]="patient?.Address.State" name="state"
[ngClass]="{'text-dimmed': !patient?.Address.State}"
class="form-control input-underline input-lg">
<option [ngValue]="null" disabled>State</option>
<option *ngFor="let state of states" [value]="state.abbreviation">
{{state.abbreviation}}
</option>
</select>
</div>
<div class="col-3">
<input type="text" [(ngModel)]="patient?.Address.Zip" name="zip"
class="form-control input-underline input-lg" id="zipcode" maxlength="5"
pattern="\d{5}" placeholder="Zipcode" [required]="isOfficeStaff">
</div>
</div>
</div>
这是模型
export class Patient {
id?: number;
Email?: string;
Address? = {
Address1: '',
Address2: '',
City: '',
State: '',
Zip: '',
County: '',
Country: ''
};
}
ts文件
public patient: Patient;
ngOnInit() {
this.store.select("patient").subscribe(patient => {
this.patient = Object.assign({}, new Patient(), patient);
if (this.patient.Id && !this.patientSnapshot) {
this.patientSnapshot = {...this.patient};
}
});
});
}
当我打开以编辑地址时 它抛出一个错误 无法读取属性地址1为空 即使值来自null或空字符串,有什么方法可以处理此错误? 谢谢
答案 0 :(得分:1)
您正在做的是尝试对可能不存在的对象也使用可能具有不存在的属性的2种方式绑定。然后使用[[ngModel)]无效,但是如果您像这样拆分绑定,则可以正常工作。
<input type="text" [ngModel]="patient?.Address?.Address1" (ngModelChange)="functionToHandleSettingValue($event)" name="address1" >
通过这种方式,您正在使用ngModel处理数据绑定,并使用ngModelChange处理数据绑定。
还请注意,在ngModel中,该语句应为
[ngModel]="patient?.Address?.Address1"
在病人和地址上都带有Elvis运算符,因为两者都可以为空。