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

Well, here is the story:

I have some data need to send to server, but they should turned into JSON dataType first.

I made such ajax call:

    $.ajax({
       url: url, // the url I want to post to.
       type: 'POST',
       contenttype:'application/json; charset=utf-8',
       beforeSend: //some HTTP basic auth stuff
       data: {
          name:'test',
          key:'foo',
          key2:'bar'
       },
       dataType:'JSON'
});

basically I'm expecting the data I send to server was:

[name:test,key:foo,key2:bar]

but what I've got was:

name=test&key=foo&key2=bar

What did I missing? How can I get those data into JSON?

share|improve this question

4 Answers

I've had the same problem. You can't send an object as "data", you need to stringify the object. Try this instead, with your object stringified:

$.ajax({
       url: url,
       type: 'POST',
       contentType:'application/json',
       data: '{
          name:"test",
          key:"foo",
          key2:"bar"
       }',
       dataType:'json'
});
share|improve this answer
I've seen this too, but I've seen examples that show it like this: data: {name: 'test', key: 'foo', key2: 'bar'}. It fails every time when I try to code it like that – Yatrix Nov 11 '12 at 1:00
 var data = {'bob':'foo','paul':'dog'};
 $.ajax({
   url: url,
   type: 'POST',
   contentType:'application/json',
   data: JSON.stringify(data),
   dataType:'json'
 });
share|improve this answer

See this stackoverflow question on how to serialize your JS data to a JSON string.

share|improve this answer
dataType: 'json',
share|improve this answer
To be more clear, this answer means that you have incorrectly capitalized your dataType value. String comparisons are case-sensitive, and jQuery only tests for "json", not "JSON". – Phrogz Dec 3 '10 at 6:24
dataType is used for the data that is returned by the response and not for the posting. – Jonas Jun 6 '11 at 16:39

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.