在Controller中使用$ setValidity

时间:2013-01-16 16:58:22

标签: javascript angularjs angularjs-controller angularjs-forms

我正在尝试对文件更改进行一些验证。这是我的代码:

查看/模板

<input type="file" name="file" id="file"  
       onchange="angular.element(this).scope().setFile(this)" 
       required />

<span class="error" ng-show="myForm.file.$error.required">Error</span>
<span class="error" ng-show="myForm.file.$error.size">Selected file is too large</span>
<span class="error" ng-show="myForm.file.$error.filetype">Unsupported File type</span>

控制器

angular.module("myapp").controller("myctrl", function($scope) {
  $scope.setFile = function(element) {
    $scope.$apply(function($scope) {
      var fileObject = element.files[0];
      $scope.file.fileType = 
         fileObject.type.toUpperCase().substring(fileObject.type.indexOf("/") + 1);

      // Validation
      if (!$scope.isValidFileType($scope.file.fileType)) {
        myForm.file.$setValidity("myForm.file.$error.filetype", false);
      }

      if (fileObject.size > 1000*1000*10) {
        myForm.file.$setValidity("myForm.file.$error.size", false);
      }
    });
  };

  $scope.isValidFileType = function(fileExtension) {
    var supportedExtensions = ["doc", "docx", "ppt", "pptx", "jpg", "gif", "png"]; // etc.
    return (jQuery.inArray(fileExtension, supportedExtensions) > -1);
  }
});

但是现在拨打$setValidity的电话不起作用 有什么想法吗?

3 个答案:

答案 0 :(得分:125)

这一行:

myForm.file.$setValidity("myForm.file.$error.size", false);

应该是

$scope.myForm.file.$setValidity("size", false);

答案 1 :(得分:16)

需要在ngModelController上调用$ setValidity。在控制器内部,我认为这意味着$scope.myForm.file.$setValidity()

如果您还没有,请参阅Forms page上的“自定义验证”部分。

另外,对于$ setValidity的第一个参数,只使用'filetype'和'size'。

答案 2 :(得分:2)

为单个元素显示多条验证消息的更好和优化的解决方案就是这样。

<div ng-messages="myForm.file.$error" ng-show="myForm.file.$touched">
 <span class="error" ng-message="required"> <your message> </span>
 <span class="error" ng-message="size"> <your message> </span>
 <span class="error" ng-message="filetype"> <your message> </span>
</div>

控制器代码应该是@ Ben Lesh

建议的代码