我要求只在输入模糊或按下输入时才更新模型,错误/成功消息只会在输入之后显示,而不是在输入期间显示。 以前我使用的是AngularJS 1.2 rc2并具有以下代码:
使用Javascript:
angular.module('app', []).directive('ngModelOnblur', function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (scope, element, attrs, ngModelCtrl) {
if (attrs.type === 'radio' || attrs.type === 'checkbox') { return; }
var update = function () {
scope.$apply(function () {
ngModelCtrl.$setViewValue(element.val().trim());
ngModelCtrl.$render();
});
};
element.off('input').off('keydown').off('change').on('focus', function () {
scope.$apply(function () {
ngModelCtrl.$setPristine();
});
}).on('blur', update).on('keydown', function (e) {
if (e.keyCode === 13) {
update();
}
});
}
};
})
.controller('Ctrl', ['$scope', function ($scope) {
$scope.getClass = function (input) {
if (input.$pristine) { return ''; }
return input.$invalid ? 'has-error' : 'has-success';
};
}]);
HTML:
<div ng-controller="Ctrl">
<form name="form" novalidate>
<div ng-class="getClass(form.firstname)">
<input type="text" name="firstname" ng-model="firstname" ng-model-onblur ng-pattern="/^\d{4}$/" />
<div class="error">error</div>
<div class="success">success</div>
$pristine: {{form.firstname.$pristine}}
</div>
</form>
</div>
CSS:
.error, .success {
display: none;
}
.has-error .error, .has-success .success {
display: block;
}
但是自从我升级到RC3后,事情开始崩溃。虽然我删除了输入,更改和keydown的事件处理程序,但在输入过程中$ pristine仍然设置为false,因此将显示消息。
我尝试为指令设置terminal: true
,priority: -1
,但它仍然不起作用。我做错了什么?
以下是plunker:http://plnkr.co/edit/8FliNc?p=preview
提前致谢
答案 0 :(得分:2)
如果你给你的指令优先权,它对你有用:1。设置terminal = true意味着永远不会调用ng-model,我认为不支持优先级-1。
http://plnkr.co/edit/mZyWw8?p=preview
我在指令中找到的一些小问题:当你重新聚焦输入时,模型被重置(表单设置为pristine),如果模型有效则表示。 如果清空输入,则在设置模型后,模型不会设置为未定义。
答案 1 :(得分:0)
我认为Angular JS现在支持此功能。
请参阅:https://docs.angularjs.org/api/ng/directive/ngModelOptions
我使用的是angular 1.6,“ updateOn:'blur'”似乎对我有用。