0
我在我的離子應用程序(the code available here)中有註冊表單,註冊視圖有它自己的控制器。密碼確認有一個指令來檢查與主密碼的匹配。註冊按鈕被禁用,直到表單有效。但該表格永遠不會生效。 password_c
輸入總是無效。AngularJs-表單驗證指令。密碼確認始終無效
<ion-view view-title="Register Form">
<ion-content>
<form ng-submit="signup()" name="regForm" novalidate>
<div>
<label for="email" .....></label>
<label for="password" ......></label>
<label for="password_c">
<input type="password" id="password_c" name="password_c" ng-model="registerForm.password_c" valid-password-c required>
<span ng-show="regForm.password_c.$error.required && regForm.password_c.$dirty">Please confirm your password.</span>
<span ng-show="!regForm.password_c.$error.required && regForm.password_c.$error.noMatch && regForm.password.$dirty">Passwords do not match.</span>
</label>
<button type="submit" ng-disabled="!regForm.$valid">
</div>
</form>
</ion-content>
</ion-view>
,這是指令:
.directive('validPasswordC', function() {
return {
require: 'ngModel',
link: function (scope, elm, attrs, ctrl) {
ctrl.$parsers.unshift(function (viewValue, $scope) {
var noMatch = viewValue != scope.regForm.password.$viewValue
ctrl.$setValidity('noMatch', !noMatch)
})
}
}
})
我做console.log
的ng-show
條件;當密碼匹配時,條件變得不明確。
console.log(!regForm.password_c.$error.required && regForm.password_c.$error.noMatch && regForm.password.$dirty)
另外;首先.required
變得不確定,然後.noMatch
你救了我的命:)它的工作 –
只知道,爲什麼在純AngularJs Apps是需要和工作不歸路?像這個例子一樣:http://jsfiddle.net/thomporter/UZrex/1/ –