5

下面的代码不起作用..

<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:00formName.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:00formName.hhmmss.$error.pattern则为false

如何在中使用正则表达式ng-pattern

4

2 回答 2

1

我遇到了同样的问题并更改了 mask.js 文件以更新按键上的范围值。有一行代码可以做到这一点,但并不是一直运行。

controller.$setViewValue(valUnmasked);

将 if 语句更新为以下内容:

if (valAltered || iAttrs.ngPattern) {

这将在按键上运行“scope.apply”并更新模型。

于 2015-02-16T21:15:17.503 回答
0

Angular 1.3.19 改变ng-pattern了打破 ui-mask 的行为。

目前,ng-pattern 指令在 changelog 中$viewValue验证而不是$modelValue-Reference 。

Angular 团队提供了自定义指令来恢复以前的行为。这是解决此问题的好方法。

当您同时使用和时,您必须pattern-model向字段添加属性。ui-maskng-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 中的问题 -参考

于 2016-11-18T21:26:02.963 回答