作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了一个休息 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/
我是一名优秀的程序员,十分优秀!