我有一个自定义验证指令,用于确保两个日期在有效范围内。当用户更改值时,该指令工作正常,但是当我通过AJAX加载新的lineItem
模型时,它不会触发。
问题是用户可能在表单上输入无效日期并触发错误,然后加载另一个lineItem。此时,即使表单中的数据有效,表单上也会显示错误消息。
如果我使用Angular的内置验证(如required
)尝试相同的操作,则验证会触发并相应地消失。那么,我需要做些什么来使我的验证触发器与Angular的相同?
(注意:我在表单属性上使用novalidate
,而Angular v1.1.5)
指令
ngApp.directive("validateBefore", function () {
return {
require: 'ngModel',
link: function (scope, element, attrs, ctrl) {
ctrl.$parsers.unshift(function(value) {
var before = scope.$eval(attrs.validateBefore);
if(value <= before || !before) {
ctrl.$setValidity("validateBefore", true);
return value;
} else {
ctrl.$setValidity("validateBefore", false);
return undefined;
}
});
}
}
});
TEMPLATE
<div class="date-group">
<span class="date">
<input type="text" class="input-medium" name="starts-at" ng-model="lineItem.startsAt" placeholder="From..." validate-before="lineItem.endsAt">
</span>
<span class="date">
<input type="text" class="input-medium" name="ends-at" ng-model="lineItem.endsAt" placeholder="To..." validate-after="lineItem.startsAt">
</span>
</div>
CONTROLLER
var lineItem = LineItem.get( { id: lineItemId }, function () {
$scope.lineItem = lineItem;
if($scope.lineItemForm) {
$scope.lineItemForm.$setPristine();
}
}
答案 0 :(得分:10)
$parsers
触发。我需要添加$formatters
,它将模型中的数据发送到DOM。
在$解析器之后,我添加了以下内容:
ctrl.$formatters.unshift(function(value) {
var before = scope.$eval(attrs.validateBefore);
ctrl.$setValidity("validateBefore", before ? value <= before : true);
return value;
});
这会导致验证在模型更改时触发。这里讨论的更多: http://docs.angularjs.org/guide/forms,此处http://docs.angularjs.org/api/ng.directive:ngModel.NgModelController#$formatters