Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the code below, the angular.js $http method calls the url, and submits the xsrf object as a "Request Payload" (as described in the Chrome debugger network tab). The jQuery $.ajax method does the same call, but submits xsrf as "Form Data".

How can I make angular.js submit xsrf as form data instead of a request payload?

var url = 'http://somewhere.com/';
var xsrf = {fkey: 'xsrf key'};

$http({
    method: 'POST',
    url: url,
    data: xsrf
}).success(function () {});

$.ajax({
    type: 'POST',
    url: url,
    data: xsrf,
    dataType: 'json',
    success: function() {}
});
share|improve this question

5 Answers

up vote 53 down vote accepted

The following line needs to be added to the $http object that is passed:

headers: {'Content-Type': 'application/x-www-form-urlencoded'}

And the data passed should be converted to a string:

var xsrf = $.param({fkey: "key"});

So you have something like:

$http({
    method: 'POST',
    url: url,
    data: xsrf,
    headers: {'Content-Type': 'application/x-www-form-urlencoded'}
})

From: https://groups.google.com/forum/#!msg/angular/5nAedJ1LyO0/4Vj_72EZcDsJ

share|improve this answer
Is there a way for the json > url encoding of the data to happen automatically or to specify this happening for every POST or PUT method? – Dogoku Oct 31 '12 at 13:25
@Dogoku, see my answer below: stackoverflow.com/a/13490145/91696 – Albireo Nov 21 '12 at 9:33
@Albireo figured it out eventually, thx anw :P – Dogoku Nov 21 '12 at 10:36
1  
+1 @mjibson, For me even passing the headers was not working, until i saw your answer containing this: var xsrf = $.param({fkey: "key"}); Thats stupid, why can't angular do it internally? – naikus Feb 4 at 6:44
@naikus That doesn't sound like a bad idea. Submit a feature request to the angular folks? – mjibson Feb 5 at 19:43

The continued confusion surrounding this issue inspired me to write a blog post about it. The solution I propose in this post is better than your current top rated solution because it does not restrict you to parametrizing your data object for $http service calls; i.e. with my solution you can simply continue to pass actual data objects to $http.post(), etc. and still achieve the desired result.

Also, the top rated answer relies on the inclusion of full jQuery in the page for the $.param() function, whereas my solution is jQuery agnostic, pure AngularJS ready.

http://victorblog.com/2012/12/20/make-angularjs-http-service-behave-like-jquery-ajax/

Hope this helps.

share|improve this answer
+1 for the detailed blog, but the fact that there is a need for this is horrible... – iwein Apr 5 at 7:55
1  
Yes, maybe horrible on two levels: 1) that AngularJS decided to upend a de facto (though admittedly misguided) standard, and 2) that PHP (and who knows whatever other server-side languages) somehow doesn't automatically detect application/json input. :P – Ezekiel Victor Apr 29 at 3:20

You can define the behavior globally:

$http.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded";

So you don't have to redefine it every time:

$http.post("/handle/post", {
    foo: "FOO",
    bar: "BAR
}).success(function (data, status, headers, config) {
    // TODO
}).error(function (data, status, headers, config) {
    // TODO
});
share|improve this answer
This is really useful :D – Vdt Jan 22 at 9:41

If you do not want to use jQuery in the solution you could try this. Solution nabbed from here http://stackoverflow.com/a/1714899/1784301

$http({
    method: 'POST',
    url: url,
    headers: {'Content-Type': 'application/x-www-form-urlencoded'},
    transformRequest: function(obj) {
        var str = [];
        for(var p in obj)
        str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
        return str.join("&");
    },
    data: xsrf
}).success(function () {});
share|improve this answer
This is the best answer here. – TelegramSam May 6 at 5:28
headers: {'Content-Type': 'application/x-www-form-urlencoded'}

is needed when you sending post data

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.