答案 0 :(得分:0)
您可以使用ng-init
初始化它:
<select
ng-init="selected = attributes[0]"
ng-model="selected"
ng-options="key as value.Name for (key, value) in attributes">
</select>
答案 1 :(得分:0)
解决方案是设置以下默认值:
$scope.selected = '1';
所以我只需要设置id
(键)。在选择框中显示&#34; Attribute1&#34;现在和相关的id绑定。