以下代码无效..
<input type="text"
class="form-control input-sm"
placeholder="hh:mm:ss"
name="hhmmss"
ng-model="data.hhmmss"
ui-mask="99:99:99"
ng-pattern="/^([0-2]|0[0-9]|1[0-9]|2[0-3]):?[0-5][0-9]:?[0-5][0-9]$/"
/>
当输入值为20:00:00
时,formName.hhmmss.$error.pattern
为true
。
如果删除ui-mask
:
<input type="text"
class="form-control input-sm"
placeholder="hh:mm:ss"
name="hhmmss"
ng-model="data.hhmmss"
ng-pattern="/^([0-2]|0[0-9]|1[0-9]|2[0-3]):?[0-5][0-9]:?[0-5][0-9]$/"
/>
当输入值为20:00:00
时,formName.hhmmss.$error.pattern
为false
。
如何在ng-pattern
中使用正则表达式?
答案 0 :(得分:1)
我遇到了同样的问题并更改了mask.js文件以更新keypress上的范围值。有一行代码执行此操作但不会一直运行。
controller.$setViewValue(valUnmasked);
将if语句更新为以下内容:
if (valAltered || iAttrs.ngPattern) {
这将在keypress上运行“scope.apply”并更新模型。
答案 1 :(得分:0)
Angular 1.3.19改变了打破ui-mask的ng-pattern
行为。
目前,ng-pattern指令验证$viewValue
而不是$modelValue
- Reference in changelog。
Angular团队提供了自定义指令,可以恢复以前的行为。这是解决这个问题的好方法。
当您同时使用pattern-model
和ui-mask
时,您必须向字段添加ng-pattern
属性。
<input type="text"
class="form-control input-sm"
placeholder="hh:mm:ss"
name="hhmmss"
ng-model="data.hhmmss"
ng-pattern="/^([0-2]|0[0-9]|1[0-9]|2[0-3]):?[0-5][0-9]:?[0-5][0-9]$/"
ui-mask="99:99:99"
pattern-model
/>
指令代码(将其添加到您的代码库中):
.directive('patternModel', function patternModelOverwriteDirective() {
return {
restrict: 'A',
require: '?ngModel',
priority: 1,
compile: function() {
var regexp, patternExp;
return {
pre: function(scope, elm, attr, ctrl) {
if (!ctrl) return;
attr.$observe('pattern', function(regex) {
/**
* The built-in directive will call our overwritten validator
* (see below). We just need to update the regex.
* The preLink fn guarantees our observer is called first.
*/
if (angular.isString(regex) && regex.length > 0) {
regex = new RegExp('^' + regex + '$');
}
if (regex && !regex.test) {
//The built-in validator will throw at this point
return;
}
regexp = regex || undefined;
});
},
post: function(scope, elm, attr, ctrl) {
if (!ctrl) return;
regexp, patternExp = attr.ngPattern || attr.pattern;
//The postLink fn guarantees we overwrite the built-in pattern validator
ctrl.$validators.pattern = function(value) {
return ctrl.$isEmpty(value) ||
angular.isUndefined(regexp) ||
regexp.test(value);
};
}
};
}
};
});
ui-mask GitHub中的问题 - Reference。