我正在使用AngularJS,我想创建一个密码确认字段来检查两个条目是否匹配。为此,我使用了本教程中的自定义指令:http://odetocode.com/blogs/scott/archive/2014/10/13/confirm-password-validation-in-angularjs.aspx。
由于某种原因,匹配检查不会给出任何结果。当我输入不同的密码时,它仍然将字段视为有效。我想我在AngularJS中缺少一些关于自定义指令的使用的东西,但它有点令人困惑,因为我在时间上采用与教程中完全相同的代码。
我也在这里检查过相关问题,但也没有运气。
HTML:
<div ng-app="myApp">
<h1>Register!</h1>
<form name="registrationForm" novalidate>
<div class="form-group">
<label>User Name</label>
<input type="text" name="username" class="form-control" ng-model="registration.user.username" required />
<p ng-show="registrationForm.username.$error.required">Required<br/><br/></p>
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="password" class="form-control" ng-model="registration.user.password" required />
<p ng-show="registrationForm.password.$error.required">Required<br/><br/></p>
</div>
<div class="form-group">
<label>Confirm Password</label>
<input type="password" name="confirmPassword" class="form-control" ng-model="registration.user.confirmPassword" required compare-to="registration.user.password" />
<p ng-show="registrationForm.confirmPassword.$error.required">Required<br/><br/></p>
<p ng-show="registrationForm.confirmPassword.$error.compareTo">Passwords must match !</p>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Register!</button>
</div>
</form>
</div>
JS:
angular.module('myApp', [])
.directive('compareTo', function(){
return {
require: "ngModel",
scope: {
otherModelValue: "=compareTo"
},
link: function(scope, element, attributes, ngModel) {
ngModel.$validators.compareTo = function(modelValue) {
return modelValue == scope.otherModelValue;
};
scope.$watch("otherModelValue", function() {
ngModel.$validate();
});
}
};
})
JSFiddle显示问题:http://jsfiddle.net/ptb01eak/
从教程中学习Plunkr:http://plnkr.co/edit/FipgiTUaaymm5Mk6HIfn?p=preview
感谢您的帮助!
答案 0 :(得分:1)
问题来自你的AngularJS版本,我在jsfiddle中将其更新为:AngularJS 1.5.6
(CDN link)并且它有效(new jsfiddle)。