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: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ですか?

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 マスクを壊す動作が変更されました。

現在、 -Reference in changelog$viewValueの代わりにng $modelValue- pattern ディレクティブが検証されます。

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 -リファレンスの問題。

于 2016-11-18T21:26:02.963 に答える