用ajax请求的,报错原因编码问题,加入contentType : 'application/json',就可以了
$.ajax({
type: "POST", //提交的方法
dataType: "json",
contentType : 'application/json',//添加这句话
url:"", //提交的地址
async: false,
data:JSON.stringify(str),
error: function(request) { //失败的话
},
success: function(data) { //成功
}
});