Angular, Using Elvis sing in [(ngModel)] with mat-form-field



我想实现当object或id为null时不显示任何内容,为空,这样当用户想要更新时,它可以稍后进行。

<mat-form-field appearance="legacy">
<mat-label>LOCATION</mat-label>
<mat-select name="obj"  [(ngModel)]="exampleObj.obj.id" >
<ng-container *ngFor="let obj of objs">
<mat-option [value]="obj.id">
{{obj.location}}
</mat-option>
</ng-container>
</mat-select>
</mat-form-field>

错误是ctx.exampleObj.obj is null。

猫王的歌(?)不适合mat-form-field

有人能帮帮我吗?

我修复了。只是在obj的属性中添加了一个空字符串。例如:

obj = { id : ' ' , location : ' ' }

相关内容

  • 没有找到相关文章

最新更新