AngularJS 'controller as' 和 form.$valid

AngularJS 'controller as' and form.$valid

我想检查 angular 控制器中的表单是否有效。这在使用 $scope 时看起来很简单,但我无法让它与 'controller as' 语法一起使用。

当我尝试访问 form.$valid 时,我收到错误消息 "Cannot read property '$valid' of undefined".

plunkr: http://plnkr.co/edit/w54i1bZVD8UMhxB4L2JX?p=preview

HTML

<div ng-app="demoControllerAs" ng-controller="MainController as main">
  <form name="contactForm" novalidate>
    <p>
      <label>Email</label>
      <input type="email" name="email" ng-model="main.email" required />
    </p>
    <p>
      <label>Message</label>
      <textarea name="message" ng-model="main.message" required></textarea>
    </p>
    <input type="submit" value="submit" ng-click="main.submit()" />
  </form>
</div>

JS

var app = angular.module('demoControllerAs', []);

app.controller('MainController', [function () {
    var main = this;

    main.submit = function () {
        var isValid = main.contactForm.$valid;
        console.log(isValid);
    };
}]);

你需要这样使用:$scope.contactForm.$valid

编辑

要使用上述语法,需要在控制器中注入 $scope。

app.controller('MainController', function($scope) { 
  //code 
} 

你可以按照@ons-jjss 的建议去做,但如果你不想将 $scope 注入你的控制器,那么只需将你的 form 名称更改为

<form name="main.contactForm" novalidate>

它会非常有效。

您可以将表单作为参数传递给函数提交为 ng-click="main.submit(contactForm)

然后在控制器方法中验证它

需要在form name属性中使用main.contactForm才解决。 看到这个

`http://plnkr.co/edit/us8MKU3LZ7pnLV66xIrv?p=preview`