Here is My ajax call
$.ajax({
url:'http://localhost:8081/organizations/',
data: JSON.stringify({"name":"karthik"}),
type: 'POST',
dataType :'json',
processData : true,
success: (function(response){ alert("response "+response);}),
error: (function(err){ console.log(err); })
});
In the api, when i tried to print request.data, why i am getting like this {u'{"name":"karthik"}': [u'']}