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?