何が間違っているのか分かりませんが、手がかりはありませんか? ng-repeatを使用してng-selectを試してみましたが、何もレンダリングしないのがうれしいです。配列リストのレンダリングでng-selectが機能しませんか?
<select name="country" ng-model="user.country"
ng-options="country.name for country in country_list" >
{{name}}
</select>
$sope.country_list = [
{name: 'Afghanistan', code: 'AF'},
{name: 'Åland Islands', code: 'AX'},
{name: 'Albania', code: 'AL'},
{name: 'Algeria', code: 'DZ'},
{name: 'American Samoa', code: 'AS'},
{name: 'AndorrA', code: 'AD'}
];
ああ私は笑を参照してください。最初のオプションは空白ですか?デフォルト値の設定方法は? –
選択のngモデルを配列の最初のオブジェクトに設定する必要があります https://jsfiddle.net/tef7wwxu/ – Moran