gpt4 book ai didi

javascript - 如何将 header 设置为 $http.post 方法 AngularJS 1.3.5?

转载 作者:行者123 更新时间:2023-12-02 00:53:35 26 4
gpt4 key购买 nike

我写了一个休息 web 服务,以避免我在我的 java 代码中得到的错误是:与 MIME 媒体类型兼容的已注册邮件正文阅读器,我必须在我的 $http.post 中添加一个 'Content-Type': 'application/x-www-form-urlencoded' 或 'Content-Type': 'application/JSON'。我正在使用 Angularjs 1.3.5,每当我尝试添加标题 {content-type....} 时,我都失败了。我能做些什么来解决我的问题?

$scope.save = function(url,data) {
var data_stack = $scope.stack;
$http.post(url, data_stack)
.then(
function(response){
},
function(response){
});
}
<form ng-submit="save()">
<input ng-model="stack"></input>
<button type="submit">Save</button>
</form>

最佳答案

var req = {
method: 'POST',
url: 'http://example.com',
headers: {
'Content-Type':'application/x-www-form-urlencoded'
// or 'Content-Type':'application/json'
},
data: { test: 'test' }
}

$http(req).then(function(){...}, function(){...});

关于javascript - 如何将 header 设置为 $http.post 方法 AngularJS 1.3.5?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37680548/

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