Angular n’ajoute pas l’option de type de contenu correcte, j’ai essayé la commande suivante:
$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;
});
Le code ci-dessus génère la requête http suivante:
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
Comme vous pouvez le constater, au lieu de "application/json", le type de contenu est "application/xml". Est-ce que j'ai râté quelque chose ?
Vous devez inclure un corps avec la demande. Angular supprime l'en-tête content-type sinon.
Ajoutez data: ''
à l'argument à $http
.
$http({
url: 'http://localhost:8080/example/teste',
dataType: 'json',
method: 'POST',
data: '',
headers: {
"Content-Type": "application/json"
}
}).success(function(response){
$scope.response = response;
}).error(function(error){
$scope.error = error;
});
Essayez comme ça.
$http({
method: 'GET',
url:'/http://localhost:8080/example/test' + toto,
data: '',
headers: {
'Content-Type': 'application/json'
}
}).then(
function(response) {
return response.data;
},
function(errResponse) {
console.error('Error !!');
return $q.reject(errResponse);
}
Génial! La solution donnée ci-dessus a fonctionné pour moi. Avait le même problème avec un appel GET
.
method: 'GET',
data: '',
headers: {
"Content-Type": "application/json"
}
Au cas où cela serait utile à quiconque. Pour AngularJS 1.5x, je voulais définir CSRF pour toutes les demandes et j’ai trouvé que lorsque j’ai fait ceci:
$httpProvider.defaults.headers.get = { 'CSRF-Token': afToken };
$httpProvider.defaults.headers.put = { 'CSRF-Token': afToken };
$httpProvider.defaults.headers.post = { 'CSRF-Token': afToken };
Angular a supprimé le type de contenu et j'ai donc dû ajouter ceci:
$httpProvider.defaults.headers.common = { "Content-Type": "application/json"};
Sinon, je reçois une erreur de type de support 415.
Je fais donc cela pour configurer mon application pour toutes les demandes:
angular.module("myapp.maintenance", [])
.controller('maintenanceCtrl', MaintenanceCtrl)
.directive('convertToNumber', ConvertToNumber)
.config(configure);
MaintenanceCtrl.$inject = ["$scope", "$http", "$sce", "$window", "$document", "$timeout", "$filter", 'alertService'];
configure.$inject = ["$httpProvider"];
// configure the header tokens for CSRF for http operations in this module
function configure($httpProvider) {
const afToken = angular.element('input[id="__AntiForgeryToken"]').attr('value');
$httpProvider.defaults.headers.get = { 'CSRF-Token': afToken }; // only added for GET
$httpProvider.defaults.headers.put = { 'CSRF-Token': afToken }; // added for PUT
$httpProvider.defaults.headers.post = { 'CSRF-Token': afToken }; // added for POST
// for some reason if we do the above we have to set the default content type for all
// looks like angular clears it when we add our own headers
$httpProvider.defaults.headers.common = { "Content-Type": "application/json" };
}
Juste pour montrer un exemple de la façon d'ajouter dynamiquement l'en-tête "Content-type" à chaque demande POST. Dans le cas où je transmettrais POST paramètres sous forme de chaîne de requête, cette opération est effectuée à l'aide de transformRequest. Dans ce cas, sa valeur est application/x-www-form-urlencoded .
// set Content-Type for POST requests
angular.module('myApp').run(basicAuth);
function basicAuth($http) {
$http.defaults.headers.post = {'Content-Type': 'application/x-www-form-urlencoded'};
}
Puis de l'intercepteur dans la méthode de demande avant de retourner l'objet config
// if header['Content-type'] is a POST then add data
'request': function (config) {
if (
angular.isDefined(config.headers['Content-Type'])
&& !angular.isDefined(config.data)
) {
config.data = '';
}
return config;
}