加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

angularjs – 角度,内容类型不与$http一起发送

发布时间:2020-12-17 08:58:16 所属栏目:安全 来源:网络整理
导读:Angular没有添加正确的内容类型选项,我试过以下命令: $http({ url: "http://localhost:8080/example/teste",dataType: "json",method: "POST",headers: { "Content-Type": "application/json" }}).success(function(response){ $scope.response = response
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 / xml”,而不是“application / json”。我在这里缺少什么?

您需要包含请求的正文。否则角度删除内容类型标题。

将数据:“”添加到$ http的参数。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读