<select name="" id="" ng-model="currenttype">
<option value="null">---请选择---</option>
<option ng-repeat="r in roles" value={{r.emp_id}}>{{r.emp_name}}</option>
</select>
$scope.currenttype="";
$scope.$watch('currenttype',function(){
alert($scope.currenttype);
})
![图片描述][1]
Itu kerana apabila
repeat
dilaksanakan,ng-model
belum mempunyai nilai lagi. Anda boleh mendapati bahawa akan adaoption
value="?"
dalam kosong🎜 >
$scope.currenttype=$scope.roles[0];
BaiklahModel tidak dimulakan