这是我的ajax电话
$.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); })
});
在api中,当我尝试打印request.data时,为什么我会这样... {u'{"name":"karthik"}': [u'']}
答案 0 :(得分:0)
替换下面的行
success: (function(response){ alert("response "+response);}),
by newone
success: (function(response){ alert(JSON.stringify(response));}),
在您的代码中然后尝试它将起作用。