答案 0 :(得分:1)
您将需要使用ng-options指令,如下所示:
<select name="StPl_Code" class="form-control" id="field-stpl-name" ng-model="selected" ng-options="i.id as i.name for i in times"></select>
您可以看到它有效here
答案 1 :(得分:0)
试试这个:
$scope.selected = {};
而不是:
$scope.selected = '';
答案 2 :(得分:0)
使用&#39; Ng-options&#39;代替。
<select ng-options="i as i.name for i in times track by item.id" ng-model="selected"></select>
这会将$ scope.selected设置为所选对象