如何 POST 内容为 application/x-www-form-urlencoded
How to POST content as application/x-www-form-urlencoded
angularjs $http.post 拒绝使用我的 Content-Type
我正在与承包商合作 - 他们的团队正在制作服务器端 API,而我正在使用 angularjs 组装 javascript 应用程序。他们坚持让 api 只允许调用 application/x-www-form-urlencoded
调用,所以我想弄清楚如何使用 $http 进行 urlencoded 调用,并且 运行 遇到问题。我找到的所有说明页面似乎都集中在 angularjs.
的旧版本上
我尝试使用以下代码:
$scope.makeApiCall = function( ){
var apiData = {
"key1" : "value1",
"key2" : "value2"
};
var apiConfig = {
"headers" : {
"Content-Type" : "application/x-www-form-urlencoded;charset=utf-8;"
}
};
return $http.post('/Plugins/apiCall', apiData, apiConfig)
.then(function(response){
$scope.data=response.data;
});
};
但是当我进行调用时,开发人员工具报告它使用 Content-Type: text/html; charset=utf-8
,而不是使用我提供的 Content-Type
如何让我的 $http.post
发送正确的内容类型?
如何POST内容为application/x-www-form-urlencoded
使用$httpParamSerializerJQLike
服务转换数据:
.controller(function($http, $httpParamSerializerJQLike) {
//...
$http({
url: myUrl,
method: 'POST',
data: $httpParamSerializerJQLike(myData),
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
});
});
有关详细信息,请参阅
- AngularJS $httpParamSerializerJQLike Service API Reference
- Whosebug -- URL-encoding variables using only AngularJS services
angularjs $http.post 拒绝使用我的 Content-Type
我正在与承包商合作 - 他们的团队正在制作服务器端 API,而我正在使用 angularjs 组装 javascript 应用程序。他们坚持让 api 只允许调用 application/x-www-form-urlencoded
调用,所以我想弄清楚如何使用 $http 进行 urlencoded 调用,并且 运行 遇到问题。我找到的所有说明页面似乎都集中在 angularjs.
我尝试使用以下代码:
$scope.makeApiCall = function( ){
var apiData = {
"key1" : "value1",
"key2" : "value2"
};
var apiConfig = {
"headers" : {
"Content-Type" : "application/x-www-form-urlencoded;charset=utf-8;"
}
};
return $http.post('/Plugins/apiCall', apiData, apiConfig)
.then(function(response){
$scope.data=response.data;
});
};
但是当我进行调用时,开发人员工具报告它使用 Content-Type: text/html; charset=utf-8
如何让我的 $http.post
发送正确的内容类型?
如何POST内容为application/x-www-form-urlencoded
使用$httpParamSerializerJQLike
服务转换数据:
.controller(function($http, $httpParamSerializerJQLike) {
//...
$http({
url: myUrl,
method: 'POST',
data: $httpParamSerializerJQLike(myData),
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
});
});
有关详细信息,请参阅
- AngularJS $httpParamSerializerJQLike Service API Reference
- Whosebug -- URL-encoding variables using only AngularJS services