如何在选项中将模型值与选择值分开?

时间:2017-01-18 09:33:15

标签: angular data-binding

我想在从2015年到当年的下拉列表中选择一个值:

<select (change)="changeDate()">
      <option  *ngFor="let exercice of exercices" (ngModel)="selectedExercise" 
      [value]="exercice">{{exercice}}</option>
</select>

我的模型中有变量&#34; selectedExercise:number&#34;,我想让它动态获取我的选择值。 我找到了这篇文章:How to dynamically bind the value of a checkbox Angular 2 有趣,但我不明白&#34;#&#34;元素。 有没有人有解决方案,最终有更好的文档记录这些&#34;#&#34;比:https://angular.io/docs/ts/latest/guide/template-syntax.html#!#ngModel

感谢您阅读

0 个答案:

没有答案