찾다

 >  Q&A  >  본문

angular.js - angular中用$watch监视select总是会多出一个空白选项,当第一选择之后那个空白就没了,有人遇到同样情况么

 <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]
过去多啦不再A梦过去多啦不再A梦2744일 전526

모든 응답(2)나는 대답할 것이다

  • 仅有的幸福

    仅有的幸福2017-05-15 16:58:59

    실행중이니까요 repeat 的时候 ng-model 尚未有值 ,你可以发现空白的那个option中会有一个 value="?"
    给一个初始化话的值就好了
    $scope.currenttype=$scope.roles[0];
    그렇습니다

    회신하다
    0
  • 天蓬老师

    天蓬老师2017-05-15 16:58:59

    모델이 초기화되지 않았습니다

    회신하다
    0
  • 취소회신하다