all!我有這個...Angular 2 RC1 - 選擇默認選項
<select #sel [(ngModel)]="sort">
<option *ngFor="let xOptions of sortOptions">{{xOptions}} </option>
</select>
與此代碼:
sortOptions = ["Op1", "Op2"];
如何設置默認爲Op2中?
它不工作:this.sort =「Op2」; 我看到一些文件說,設置模型。也許在RC1中有所改變? ty!
是啊!你正確! tyvm !!! –