2

我有一个带有自定义异步验证器的表单。我认识到有时即使输入字段中的值无效,错误消息也会消失。

我能够使用普通验证器重现该问题:codepen 示例

HTML:

<div ng-app="app" ng-controller="FormController" layout-padding>
  <form name="inputForm">
    <md-input-container>
      <input type="text" name="inputValue" custom-validator ng-model="model.value" />
      <label>input value</label>
      <div ng-messages="inputForm.inputValue.$error">
        <div ng-message="custom-validator">This field is invalid</div>
      </div>
    </md-input-container> 
    <div>inputForm.inputValue.$error = {{inputForm.inputValue.$error | json}}</div>
</div>

JS:

var app = angular.module('app', ['ngMaterial', 'ngMessages']);

app.controller('FormController', ['$scope', function($scope) {
  $scope.model = {
    value: '',
    asyncValue: ''
  }
}]);

app.directive('customValidator', function() {
  return {
    require: 'ngModel',
    link: function (scope, element, attr, ctrl) {
      ctrl.$validators['custom-validator'] = function(model, view) {
        return (model.length % 2) == 0;
      }
    }
  }
})

当我输入一个值时,错误消息正确出现并消失。但是当我快速输入时,即使输入无效,错误消息也会消失。似乎在错误消息的动画仍在进行中时 $error 值发生更改时会出现问题。

是不是我做错了什么?

4

1 回答 1

1

这是一个角度错误。它在 1.4.7 中得到修复。

于 2015-10-02T10:11:53.343 回答