[angularjs] AngularJS는 양식이 컨트롤러에서 유효한지 확인합니다.

컨트롤러에서 양식이 유효한지 확인해야합니다.

전망:

<form novalidate=""
      name="createBusinessForm"
      ng-submit="setBusinessInformation()"
      class="css-form">
 <!-- fields -->
</form>

내 컨트롤러에서 :

.controller(
    'BusinessCtrl',
    function ($scope, $http, $location, Business, BusinessService,
              UserService, Photo)
    {

        if ($scope.createBusinessForm.$valid) {
            $scope.informationStatus = true;
        }

        ...

이 오류가 발생합니다.

TypeError: Cannot read property '$valid' of undefined



답변

이 시도

보기 :

<form name="formName" ng-submit="submitForm(formName)">
 <!-- fields -->
</form>

컨트롤러에서 :

$scope.submitForm = function(form){
  if(form.$valid) {
   // Code here if valid
  }
};

또는

보기 :

<form name="formName" ng-submit="submitForm(formName.$valid)">
  <!-- fields -->
</form>

컨트롤러에서 :

$scope.submitForm = function(formValid){
  if(formValid) {
    // Code here if valid
  }
};


답변

컨트롤러를 다음과 같이 업데이트했습니다.

.controller('BusinessCtrl',
    function ($scope, $http, $location, Business, BusinessService, UserService, Photo) {
        $scope.$watch('createBusinessForm.$valid', function(newVal) {
            //$scope.valid = newVal;
            $scope.informationStatus = true;
        });
        ...


답변

여기 또 다른 해결책이 있습니다

html에 숨겨진 범위 변수를 설정 한 다음 컨트롤러에서 사용할 수 있습니다.

<span style="display:none" >{{ formValid = myForm.$valid}}</span>

다음은 전체 작동 예입니다.

angular.module('App', [])
.controller('myController', function($scope) {
  $scope.userType = 'guest';
  $scope.formValid = false;
  console.info('Ctrl init, no form.');

  $scope.$watch('myForm', function() {
    console.info('myForm watch');
    console.log($scope.formValid);
  });

  $scope.isFormValid = function() {
    //test the new scope variable
    console.log('form valid?: ', $scope.formValid);
  };
});
<!doctype html>
<html ng-app="App">
<head>
 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js"></script>
</head>
<body>

<form name="myForm" ng-controller="myController">
  userType: <input name="input" ng-model="userType" required>
  <span class="error" ng-show="myForm.input.$error.required">Required!</span><br>
  <tt>userType = {{userType}}</tt><br>
  <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br>
  <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br>
  <tt>myForm.$valid = {{myForm.$valid}}</tt><br>
  <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br>


  /*-- Hidden Variable formValid to use in your controller --*/
  <span style="display:none" >{{ formValid = myForm.$valid}}</span>


  <br/>
  <button ng-click="isFormValid()">Check Valid</button>
 </form>
</body>
</html>


답변

BusinessCtrl전과 초기화됩니다 createBusinessFormFormController. ngController양식에있는 경우에도 원하는 방식으로 작동하지 않습니다. 당신은 이것을 도울 수 없습니다 (당신은 당신의ngControllerDirective 의을 만들고 우선 순위를 속일 .) 이것이 angularjs가 작동하는 방식입니다.

예를 들어 다음 plnkr을 참조하십시오.
http://plnkr.co/edit/WYyu3raWQHkJ7XQzpDtY?p=preview


답변