5
ajaxリクエストが保留されている間にボタンを無効にするのに役立つ指示を書いています。ajaxリクエスト中にボタンを無効にする
これは私のディレクティブです:
.directive('requestPending', ['$http', function ($http) {
return {
restrict: 'A',
scope: {
'requestPending': '='
},
link: function (scope, el, attr) {
scope.$watch(function() {
return $http.pendingRequests.length;
}, function (requests) {
scope.requestPending = requests > 0;
})
}
}
}])
HTMLは次のようである:
<button request-pending="pending" ng-disabled="pending">Save</button>
が、これはそれを行うための正しい方法であるかどうかを知りたいと思いました。 $ watchの使用を控えたい
ありがとうございます。