我想在从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?
感谢您阅读