我有一个下面的例子
<mat-option *ngFor="let example of examples" [value]="example.Id">{{example Description}}</mat-option>
...其中示例是一个int / string对象。
一切都很好。某些逻辑要求将example.Id传递给组件,因此将其设置为值。
但是我希望this.form.value
上的描述自动作为值传递。
我有什么选择?
答案 0 :(得分:0)
只需使用方括号{{example.description}}中的值,还是有什么问题?
答案 1 :(得分:0)
有两种可能性
{id: number, description: string}
的示例对象,然后无法通过{{example.description}}
轻松地进行描述。<mat-option *ngFor="let example of examples" [value]="example.Id">{{getDescription(example.Id)}}</mat-option>