我正在嘗試使用動態數據爲組合框添加值。問題是這個值沒有顯示在我選擇的組合框中。無法將值添加到組合框中的ng模型中
這裏是我的html
<label>Veuillez choisir l'outil de référence :</label>
<select class="form-control"
ng-model="refouti"
ng-change="getversion()">
<option value="" selected>
Tous
</option>
<option ng-repeat="o in outills"
value={{o.id}}>
{{o.nomref}}
</option>
</select>
在我的控制器時,我想增加價值refouti
這樣的:
$scope.refouti="OPCOM";
我得到這樣的
謝謝到任何支持。
你想增加值作爲默認值? –
不,它不是一個默認值我不想粘貼所有的代碼,因爲它會看起來更復雜''scope.refouti =動態值,在每個條件下改變'ps如果我想添加一個默認值,我會添加一個默認值選項與該值 –
我建議你在選擇中使用ng-options而不是ng-repeat。 –