にIDと名前をCONCATするためにどのように私は私が戻ってコンポーネントに分割する必要があるためは:オプション値
<select class="form-control" formControlName="industry">
<option *ngFor="let industry of industries" [value]="industry._id industry.name_en">{{industry.name_en}}</option>
</select>
は、私が欲しいのは、両方のオプション値でid
とname_en
で、*ngFor options
持っています。
それとも
値と角度を使用してオプションのテキストの両方を取得する他の方法はありますか?
マイ角度現在のバージョンは4.4.4
これは動作しますが、いくつかのものを追加します。[value] = "industry._id +" __ '+ ngFor = "n =それが必要な人のために "industry.name_en"を指定します。 –
Okey Good luck bro :) –