1

DropDownプロパティ名を として表示し、プロパティをモデルDescriptionにバインドして、選択したアイテムのプロパティを表示したい。でそれを達成する方法はありますか?idScoreNameng-select

Scores = [
  { id:1, ScoreName:'1', Description:'Bad' }, 
  { id:2, ScoreName:'2', Description:'Good' },
  { id:3, ScoreName:'3', Description:'Best' }
]
<ng-select class="score" name="score" appendTo="body" [loading]="!loaded" 
   [items]="Scores" bindLabel="ScoreName" bindValue="ScoreName" 
   placeholder="" [(ngModel)]="row.Score">
</ng-select>
4

2 に答える 2