gpt4 book ai didi

javascript - AngularJs $http post 在操作钩子(Hook)之前

转载 作者:行者123 更新时间:2023-11-28 01:51:52 28 4
gpt4 key购买 nike

下面是我的 $http 调用。 Angular 是否有像 success 这样的函数 before ,它会在实际的 $http 调用之前执行

 $http.post(postUrl, $scope.tempData, {
}).success(function(response) {

alert(response);

}).error(function (errorCode) {

alert(errorCode);
}
);

最佳答案

Does angular has some function like success say before which will execute before actual $http call.

快速回答:不会。

但是您可以在 factoryprovider 中实现此模块并实现您想要的任何逻辑。

这里是示例:

.factory('ajax_post', ['$http', function(_http) {

var path = 'src/php/data.ajax.php';

return{
init: function(jsonData){

// do logic here


var _promise= _http.post(path,
jsonData
,{
headers: {
'SOAPActions': 'http://schemas.microsoft.com/sharepoint/soap/UpdateListItems'
}
}
);
return _promise;
}

}
}]);

关于javascript - AngularJs $http post 在操作钩子(Hook)之前,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19604057/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com