1
我有一個問題,選擇一個默認值與角選擇。 如果我選擇的選項只有一個值it's OK和工作正常多ng選項設置默認選項選擇不工作
<select id="customerId"
ng-model="customer"
ng-options="customer.id for customer in customersSelect">
</select>
在我的角度JS:
$scope.customer = customer;
但如果我嘗試與ng-options
多個元素和我設置的默認選項,不起作用
<select id="customerId"
ng-model="customer"
ng-options="customer.id as customer.name for customer in customersSelect">
</select>
任何想法?
這有幫助嗎? http://stackoverflow.com/questions/20845210/setting-selected-values-for-ng-options-bound-select-elements – Ric