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‘}, ];
原文:https://www.cnblogs.com/kaiwen0425/p/9130790.html