次のように構造化された配列を使用します。
[
{"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>
確かに、select は国のリストを名前で表示します。オブジェクト {name ... code..} ではなく、国コードでオプションを選択するリストが必要です。どうすればそれができますか?ありがとう