我使用这样一个结构的数组:
[
{"name": "Afghanistan", "code": "AF"},
{"name": "Åland Islands", "code": "AX"},
{"name": "Albania", "code": "AL"},
{"name": "Algeria", "code": "DZ"},...
使用 ng-options 加载选择:
<select class="form-control" id="country" ng-model="val" ng-options="country.name for country in countryList">
</select>
实际上,选择按名称显示国家列表。我希望列表按国家代码而不是对象 {name ... code..} 选择一个选项,因为它现在可以工作。我怎么能那样做?谢谢