我有一个角度指令用作验证输入的属性。
输入看起来像这样(玉)
input.form-control(type='text', name='subjectinput', id='subjectinput', subjectid-noprefix-validator='(subject.nosuffix==1)')
和验证器看起来像
.directive('subjectidNoprefixValidator', function () {
return {
require: ['^form', 'ngModel'],
scope: {
noprefixformat: '=subjectidNoprefixValidator'
},
link: function (scope, element, attrs, ctrls) {
scope.form = ctrls[0]; // so we can use form reference in displaying error messages
var ngModel = ctrls[1];
ngModel.$validators.subjectidnoprefix = function (value) {
var status = true;
// removed some logic that sets status true or false
// using $scope.noprefixformat parameter
return status;
};
}
};
});
工作正常。但是,有时在页面操作中会发生一个事件,需要在INPUT上重新触发验证而不触及它;一些单选按钮更改应该重新触发它并刷新验证状态(如您所见,我的验证器有一个参数)。
我试图通过调用页面控制器
来实现它 $scope.subjCreationForm.subjectinput.$validate();
但它似乎不起作用。可能是这种情况,还有另一种方法可以在使用$ validators时以编程方式触发字段验证吗?
答案 0 :(得分:0)
找到我的问题的核心,必须手动调用$ apply,这样可以实现:
$timeout(function () {
$scope.subjCreationForm.subjectinput.$validate();
});