This one is really weird. I've multiple $.post() in the code but there is one dunno why sends the json parameters as x-www-form-urlencoded instead and therefore doesn't work.

Here's the code:

$.post("/Route/SaveTransportProperties", { properties: JSON.stringify(propArray), currTravelBox: JSON.stringify(travelBoxObj), accessToken: getAccessToken()}, function(data)
    {
        //DO STUFF
    });

The XHR looks like this in Firefox: Firefox screenshot

Any ideas why is this happening? I also enforced the type as 'json' but doesn't work either.

link|improve this question

73% accept rate
feedback

3 Answers

up vote 1 down vote accepted

If you want to send the data as json then use the $.ajax function

You can specify type post and dataType json.

$.ajax({
  url: "mydomain.com/url",
  type: "POST",
  dataType: "xml/html/script/json",
  data: $.param( $("Element or Expression") ),

  complete: function() {
    //called when complete
  },

  success: function() {
    //called when successful
 },

  error: function() {
    //called when there is an error
  },
});
link|improve this answer
Ok. I migth have miscopied the ajax code from somewhere, or perhaps from an old or newer jquery version but problem why ajax as not working ( see my comment under Olli answer ) was bc in the type param i had "JSON" instead of "POST" – byte_slave Apr 3 '11 at 13:42
feedback

Because $.post() is for sending form-like requests. $.ajax is for sending whatever you want to. See contentType in $.ajax page for more information.

Quote:

When sending data to the server, use this content-type. Default is "application/x-www-form-urlencoded", which is fine for most cases. If you explicitly pass in a content-type to $.ajax() then it'll always be sent to the server (even if no data is sent). Data will always be transmitted to the server using UTF-8 charset; you must decode this appropriately on the server side.

link|improve this answer
Post is a shorthand for $.ajax() so it should work and also i've it working in other place inside my code.... its just here that it seems to fail. Reason why i'm not using $.ajax() its because in IE9 compat mode is throwing an exception "SCRIPT87: Invalid argument." but with $.post() ( besides its not working...that shy my question) doesn't throw any error. – byte_slave Apr 3 '11 at 13:37
feedback

$.post takes an optional last argument which represents the dataType. check here

Edit: Oops! .. Olli is correct. $.ajax will work here. The dataType in $.post() represents the type of data expected from the server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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