Angularjs检查密码的指令已经重复,不能工作

angularjs directive to check password has been repeated not working

本文关键字:不能 工作 检查 密码 指令 Angularjs      更新时间:2023-09-26

尝试使AngularJS指令工作,我遵循这个教程:http://sahatyalkabov.com/create-a-tv-show-tracker-using-angularjs-nodejs-and-mongodb/

在注册表单中,名为repeat-password的指令检查表单中输入的两个电子邮件是否对应:

<div class="form-group" ng-class="{ 'has-success' : signupForm.confirmPassword.$valid && signupForm.confirmPassword.$dirty, 'has-error' : signupForm.confirmPassword.$invalid && signupForm.confirmPassword.$dirty }">
    <input class="form-control input-lg" type="password" name="confirmPassword" ng-model="confirmPassword" repeat-password="password" placeholder="Confirm Password" required>
    <div class="help-block text-danger my-special-animation" ng-if="signupForm.confirmPassword.$dirty"ng-messages="signupForm.confirmPassword.$error">
       <div ng-message="required">You must confirm password.</div>
       <div ng-message="repeat">Passwords do not match.</div>
    </div>
 </div>
 <button type="submit" ng-disabled="signupForm.$invalid" class="btn btn-lg btn-block btn-primary">Create Account</button>

所需的html的部分工作,但不是重复密码部分,没有错误信息显示,它不阻止我提交的形式,我直接路由到提交按钮导致太。我使用的指令本身的代码如下:

angular.module("MyApp")
    .directive("repeatPassword", function () {
        return {
            require: "ngModel",
            link: function (scope, elem, attrs, ctrl) {
                var otherInput = elem.inheritedData("$formController")[attrs.repeatPassword];
                ctrl.$parsers.push(function (value) {
                    if (value === otherInput.$viewValue) {
                        ctrl.$setValidity("repeat", true);
                        return value;
                    }
                    ctrl.$setValidity("repeat", false);
                });
                otherInput.$parsers.push(function (value) {
                    ctrl.$setValidity("repeat", value === ctrl.$viewValue);
                    return value;
                });
            }
        };
    });

我不知道它是否有用,但我使用AngularJS v1.3.0-beta。15和Angular-ui。路由器0.2.10。

这是一个通用版本的fieldMatch指令,带有注释和对其他SO问题的引用。它已经在1.2和1.3测试版中进行了测试。

.directive('fieldMatch', function () {
    return {
        restrict: 'A',
        scope: true,
        require: 'ngModel',
        link: function (scope, elem, attrs, ngModel) {
            var checkFieldMatch = function () {
                // WARNING - FIXME:
                // when a validator fails (returns false), then the underlying model value is set to undefined
                //
                // https://stackoverflow.com/questions/24692775
                // https://stackoverflow.com/questions/24385104
                //
                // => solution: use ngModel.$viewValue instead of ngModel.$modelValue
                var fieldMatch = scope.$eval(attrs.dsFieldMatch),
                    value = ngModel.$modelValue || ngModel.$viewValue;
                // If fieldMatch or ngModel.$viewValue is defined,
                // they should match
                if (fieldMatch || value) {
                    return fieldMatch === value;
                }
                return true;
            };
            scope.$watch(checkFieldMatch, function (n) {
                //set the form control to valid if both
                //passwords are the same, else invalid
                ngModel.$setValidity('fieldMatch', n);
            });
        }
    };
});

参见以下两个问题:

Angularjs setValidity导致modelValue不更新

在AngularJS中使用$validators管道进行密码匹配会产生意想不到的结果