gpt4 book ai didi

angularjs - Angular,内容类型未通过 $http 发送

转载 作者:行者123 更新时间:2023-12-02 21:40:03 25 4
gpt4 key购买 nike

Angular 没有添加正确的内容类型选项,我尝试了以下命令:

$http({
url: "http://localhost:8080/example/teste",
dataType: "json",
method: "POST",
headers: {
"Content-Type": "application/json"
}
}).success(function(response){
$scope.response = response;
}).error(function(error){
$scope.error = error;
});

上面的代码生成以下 http 请求:

POST http://localhost:8080/example/teste HTTP/1.1
Host: localhost:8080
Connection: keep-alive
Content-Length: 0
Cache-Control: no-cache
Pragma: no-cache
Origin: http://localhost:8080
User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
Content-Type: application/xml
Accept: application/json, text/plain, */*
X-Requested-With: XMLHttpRequest
Referer: http://localhost:8080/example/index
Accept-Encoding: gzip,deflate,sdch
Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.6,en;q=0.4
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=C404CE2DA653136971DD1A3C3EB3725B

如您所见,内容类型不是“application/json”,而是“application/xml”。我在这里遗漏了什么吗?

最佳答案

您需要在请求中包含正文。否则,Angular 会删除内容类型 header 。

data: '' 添加到 $http 的参数中。

关于angularjs - Angular,内容类型未通过 $http 发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16194442/

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