我正在尝试构建一个具有自定义验证指令并使用 ng-messages 显示它们的模块
验证是通过正则表达式完成的。
我看到的错误是:
错误:找不到指令“ngMessage”所需的 [$compile:ctreq] 控制器“ngMessages”!
我的代码如下所示:
验证指令:
module LoginModule {
'use strict';
/***** REGEX *****/
export class regExp {
public ID_OR_PASSPORT = /^[0-9]{9}$/;
public USERNAME_SINGLE_WORD = /^[A-Za-z0-9à-ú-_\.]{6,8}$/;
public PASSWORD = /^[A-Za-z0-9à-ú-_\.]{8}$/;
public EMAIL = /^([\?!\/]*)+\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
public ALPHANUMERIC = /^[a-zA-Z0-9]+$/;
public NUM = /^[0-9]{1,}[.]{0,1}[0-9]{0,}$/;
public PHONE_BODY = /^[0-9]{7}$/;
}
angular.module("LoginModule").value('REG_EXP', LoginModule.regExp);
}
module LoginModule {
export class uniIdValidator implements ng.IDirective {
constructor(public REG_EXP) { }
public restrict: string = 'A';
public require: string[] = ['ngModel'];
public templateUrl: string = 'errorMessages.html'; //this should be external file, will be used later
public replace: boolean = false;
public link: Function = (scope: ng.IScope,
element: ng.IAugmentedJQuery,
attrs: ng.IAttributes,
ctrls: any) => {
ctrls[0].$validators.userId = function (modelValue) {
//return REG_EXP.ID_OR_PASSPORT.test(modelValue);
console.log(modelValue)
return modelValue;
};
}
}
angular.module('LoginModule')
.directive('uniIdValidator', ['REG_EXP',
(REG_EXP) => { return new LoginModule.uniIdValidator(REG_EXP) }]);
}
在我的html中:
<Input ... uni-id-validator />
<div class="login-form__error-box" ng-messages="loginForm.loginFormId.$error">
<span class="login-form__error-msg" ng-message="userId">error in ID</span>
<span ng-message="required">This is required</span>
</div>
我的应用模块:
((): void=> {
var appLogin = angular.module("LoginModule", ['ngRoute', 'ngMessages']);
appLogin.config(LoginModule.Routes.configureRoutes);
})()
我的控制器太长,无法在此处发布,但它没有注入 ngMessages(我也尝试使用静态注入 --> 不起作用)
显然我做错了什么,但我不知道是什么。(这是我之前遇到的问题的继续)