我的 ng-option select 栏显示列表中的最后一个值

My ng-option select bar is showing the last value in the list

这是我的HTML

<select ng-if="list[$index].length>0" data-ng-model="form1value[$index]"
        data-ng-options="label for label in obj.child track by $index">
</select>

我在 obj.child 中获取的最后一个值默认为 selected。我想在select栏里写'select'

您可以使用以下方法(--Select-- 将是默认选择的选项):

<select ng-if="list[$index].length>0"  data-ng-model="form1value[$index]">
    <option value="">--Select--</option>
    <option ng-repeat="item in obj.child track by $index" value="{{item}}">{{item}}</option>
</select>

0" 模型数据="form1value[$index]" ng-选项="item.value as item.name in obj.child" class="form-control">