目前,我正在为 angularjs 中的 ng-options 设置默认值而苦苦挣扎。有人可以帮助我吗?
我从资源中获取选项。
<select id="customer_country" ng-model="customer.country" ng-options="country.name for country in countries" style="width:230px;">
</select>
我目前的解决方法是像这样设置默认值:
$scope.countries = Country.query(function() {
$scope.customer.country = $scope.countries[0];
});
但我不认为这是最好的方法。我搜索了互联网,但没有找到一个好的答案。您将如何分配默认值?
目前我需要它没有空值。此外,有时它不会有空值,也不应该使用模型中的值来更新模型。