AngularJS 'controller as' and form.$valid

让人想犯罪 __ 提交于 2019-12-22 04:26:05

问题


I want to check if a form is valid inside an angular controller. This seems straightforward when using $scope, but I can't get it to work with the 'controller as' syntax.

When I attempt to access form.$valid I get the error message "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);
    };
}]);

回答1:


You could do as @ons-jjss suggested but if you prefer not to inject $scope into you controller, then just change your form name as

<form name="main.contactForm" novalidate>

and it'll work like a charm.




回答2:


You need to use in this way: $scope.contactForm.$valid

EDIT

To work the above syntax, $scope needs to be inhjected in controller.

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



回答3:


You need to use main.contactForm in form name attribute then it's solved. See this

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



回答4:


You can pass your form as a parameter to function submit as ng-click="main.submit(contactForm)

and then validate it in controller method



来源:https://stackoverflow.com/questions/30049938/angularjs-controller-as-and-form-valid

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!