这是select的html部分
<select class="form-control w-searchbar-select" ng-model="aa" ng-init="aa='请选择设备状态'" >
<option ng-repeat="data in ProcedureList" value="{{$index}}">{{data}}</option>
</select>
下面是定义的equipmentProcedureList部分
$scope.equipmentProcedureList = ["请选择设备状态", "注册", "使用中", "故障", "报废"];
目前的这种写法页面出现的效果是:
select框中没有选中任何项,为空白状态。
但是,如果去掉option 里的value="{{$index}}"后则会正常显示。
求大神指点
繁星coding
相关分类