gpt4 book ai didi

javascript - AngularJS:装饰 $http

转载 作者:数据小太阳 更新时间:2023-10-29 05:08:26 27 4
gpt4 key购买 nike

我有一个简单的 Controller ,例如:

function MyController($scope, $http) {
...
$http.post(url).success(function(data) {
console.log(data)
});
}
MyController.$inject = ['$scope', '$http'];

一切都按预期工作,但我遇到了问题。出于安全原因,返回的 JSON 用/** */注释。使用 jQuery,我扩展了 $.ajax 对象以删除此注释,然后解析结果。我想用 AngularJS 实现同样的效果,并以某种方式告诉 $http 也从每个响应中删除评论。我想为我的整个应用程序执行此操作,并避免键入始终相同的内容。

有什么想法可以做到这一点吗?

最佳答案

您将要转换所有的 $http 响应。我以前没有这样做过,但相关文档在下面。

Transforming Requests and Responses

Both requests and responses can be transformed using transform functions. By default, Angular applies these transformations:

Request transformations:

  • if the data property of the request config object contains an object, serialize it into JSON format.

Response transformations:

  • if XSRF prefix is detected, strip it (see Security Considerations section below)
  • if json response is detected, deserialize it using a JSON parser

To override these transformation locally, specify transform functions as transformRequest and/or transformResponse properties of the config object. To globally override the default transforms, override the $httpProvider.defaults.transformRequest and $httpProvider.defaults.transformResponse properties of the $httpProvider.

$http service documentation. 中阅读更多内容

关于javascript - AngularJS:装饰 $http,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11740289/

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