标签:val pre 1.5 angular data text class 指南 $scope
1.ne-repeat使用注意事项
在设置<select>类控件“ng-repeat”属性时,"as"前部分对应value值,用于选中时获取,"as"后面部分对应元素的text值,用于直接显示。
<select name="" id="" ng-model="a" ng-options="txt.id as txt.id foe text in data"> <option value="">----请选择---</option> </select>
$scope.data=[ {id:‘1‘,name:‘A‘}, {id:‘2‘,name:‘b‘}, {id:‘3‘,name:‘C‘}, {id:‘4‘,name:‘D‘}, ];
标签:val pre 1.5 angular data text class 指南 $scope
原文地址:https://www.cnblogs.com/kaiwen0425/p/9130790.html