単純なディレクティブを作成する代わりに angular-ui を使用することにした理由はわかりませんが、ディレクティブにkeyup
イベントを追加しui-event
、関数を呼び出してtrue
ここで有効性を設定することは可能だと思います。
ただし、カスタム ディレクティブを使用してシンプルに保つことをお勧めします。
yourApp.directive('checker', function () {
return {
restrict: 'A',
scope: {
checkValidity: '=checkValidity' // isolate directive's scope and inherit only checking function from parent's one
},
require: 'ngModel', // controller to be passed into directive linking function
link: function (scope, elem, attr, ctrl) {
var yourFieldName = elem.attr('name');
// check validity on field blur
elem.bind('blur', function () {
scope.checkValidity(elem.val(), function (res) {
if (res.valid) {
ctrl.$setValidity(yourFieldName, true);
} else {
ctrl.$setValidity(yourFieldName, false);
}
});
});
// set "valid" by default on typing
elem.bind('keyup', function () {
ctrl.$setValidity(yourFieldName, true);
});
}
};
});
そしてあなたの要素:
<input name="yourFieldName" checker="scope.checkValidity" ng-model="model.name" ng-required=... etc>
およびコントローラーのチェッカー自体:
function YourFormController ($scope, $http) {
...
$scope.checkValidity = function (fieldValue, callback) {
$http.post('/yourUrl', { data: fieldValue }).success(function (res) {
return callback(res);
});
};
...
}