web-dev-qa-db-ja.com

AngularJSでディレクティブを作成して、DOM操作やjQueryを使用せずに電子メールまたはパスワードの確認を検証するにはどうすればよいですか?

AngularJSでパスワード/電子メール確認ディレクティブを作成したいのですが、これまでに見たものはすべて、jQueryを突っ込んだりプルしたりする多くのDOMに依存しています。可能であれば、$ scopeプロパティのみに依存したいと思います。それを行うための最良の方法は何ですか?

16
JoshGough

この種のディレクティブを実装するための多くの便利な方法を検討した後、DOM操作やjQueryを使用せずに実装する方法を見つけました。これが 方法を示すプランク です。

それは使用を含みます:

  • 両方の入力フィールドの$ scopeのng-modelプロパティ
  • $ parse(expr)(scope)および単純なscope。$ watch式-現在のスコープのコンテキストで「match」プロパティを、match属性ディレクティブを追加するコントロールの$ modelValueに対して評価します。
  • 基になるフォームで$ invalidプロパティがtrueの場合、送信ボタンを無効にします。

これが一部の人に役立つことを願っています。要点は次のとおりです。

var app = angular.module('app', [], function() {} );

app.directive('match', function($parse) {
  return {
    require: 'ngModel',
    link: function(scope, elem, attrs, ctrl) {
      scope.$watch(function() {        
        return $parse(attrs.match)(scope) === ctrl.$modelValue;
      }, function(currentValue) {
        ctrl.$setValidity('mismatch', currentValue);
      });
    }
  };
});

app.controller('FormController', function ($scope) {
  $scope.fields = {
    email: '',
    emailConfirm: ''
  };

  $scope.submit = function() {
    alert("Submit!");
  };
});

次に、HTMLで:

<!DOCTYPE html>
    <html ng-app="app">  
      <head lang="en">
        <meta charset="utf-8">
        <title>Custom Plunker</title>
        <link rel="stylesheet" href="style.css">
        <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
        <script src="app.js"></script>
      </head>  
      <body ng-controller="FormController">
        <form name='appForm' ng-submit='submit()'>
          <div class="control-group">
            <label class="control-label required" for="email">Email</label>
            <div class="controls">
              <input id="email" name="email" ng-model="fields.email" 
    class="input-xlarge" required="true" type="text" />
              <p class="help-block">[email protected]</p>
            </div>
          </div>
          <div class="control-group">
            <label class="control-label required" for="emailConfirm">Confirm Email</label>
            <div class="controls">
              <input name="emailConfirm" ng-model="fields.emailConfirm" 
    class="input-xlarge" required="true"
                type="text" match="fields.email" />
              <div ng-show="appForm.emailConfirm.$error.mismatch">
                <span class="msg-error">Email and Confirm Email must match.</span>
              </div>
            </div>
          </div>
          <button ng-disabled='appForm.$invalid'>Submit</button>
        </form>
      </body>
    </html>
25
JoshGough

これは私にとってうまく機能します:

指令:

angular.module('myApp').directive('matchValidator', [function() {
        return {
            require: 'ngModel',
            link: function(scope, Elm, attr, ctrl) {
                var pwdWidget = Elm.inheritedData('$formController')[attr.matchValidator];

                ctrl.$parsers.Push(function(value) {
                    if (value === pwdWidget.$viewValue) {
                        ctrl.$setValidity('match', true);                            
                        return value;
                    }                        

                    if (value && pwdWidget.$viewValue) {
                        ctrl.$setValidity('match', false);
                    }

                });

                pwdWidget.$parsers.Push(function(value) {
                    if (value && ctrl.$viewValue) {
                        ctrl.$setValidity('match', value === ctrl.$viewValue);
                    }
                    return value;
                });
            }
        };
    }])

使用法

<input type="email" ng-model="value1" name="email" required>
<input type="email" ng-model="value2" name="emailConfirm" match-validator="email" required>

表示エラー

<div ng-if="[[yourFormName]].emailConfirm.$error">
    <div ng-if="[[yourFormName]].emailConfirm.$error.match">
        Email addresses don't match.
    </div>
</div>
1
Jarrod