Angular不會使用ng模型的內容更新選擇元素。綁定是單一方式select-> model。如何在傳播到視圖的模型中進行更改?角度不會使用ng模型更新選擇元素
模板:
<select class="gu2" name="coverDuration" ng-model="creditLimit.coverDuration" required="required">
<option ng-value="90" selected="selected">90 days</option>
<option ng-value="180">180 days</option>
</select>
just to check: {{creditLimit.coverDuration}}
控制器:
app.controller('CreditLimitDetailsController', function ($scope, creditLimit /* ... */) {
// creditLimit.coverDuration can be 90 or 180.
// I use a service to store the values between successive instanciations
$scope.creditLimit = creditLimit;
}
在本例中,選擇住宿沒有選項選擇,而檢查顯示90
看看[ngOptions](http://docs.angularjs.org/api/ng.directive:select) 。這可能會讓事情變得更容易。 – Mouagip
我看到了很多與ngOptions的答案,但這似乎矯枉過正,只有兩個靜態選項:/。嚴重的是,這樣一個簡單的東西怎麼能不被包含在角? – BiAiB