解决设置select默认选中不生效的方法


$scope.storageTypeList = ['Glusterfs','NFS','Ceph'];

不生效的方法:

        <select class="form-control" name="type" ng-disabled="editStorage.usage !== null" required
                data-ng-model="storageVO.type">
          <option value="{{storageType}}" data-ng-repeat="storageType in storageTypeList">{{storageType}}</option>
        </select>
$scope.storageVO.type ='NFS';

 

生效的方法

        <select class="form-control" name="type" ng-disabled="editStorage.usage !== null" required
                data-ng-model="storageVO.type">
          <option value="{{storageType}}" ng-selected="storageType === storageVO.type"
                  data-ng-repeat="storageType in storageTypeList">{{storageType}}</option>
        </select>
$scope.storageVO.type ='NFS';

主要是紫色字体部分产生的作用


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM