Caused by: com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'name': was expecting ('true', 'false' or 'null')
时间:2017-03-13 20:33:47
收藏:0
阅读:10619
Caused by: com.fasterxml.jackson.core.JsonParseException: Unrecognized token ‘name‘: was expecting (‘true‘, ‘false‘ or ‘null‘)
Ajax跨域问题
ajax提交添加下面两行代码
contentType:‘application/json;charset=utf-8‘
data:JSON.stringify(数据)
var allData = {
name:"张三",
age:20
};
$.ajax({
type: "POST",
url: "xxxx",
contentType:‘application/json;charset=utf-8‘,
data:JSON.stringify(allData),
success: function (data) {
alert(data);
}
});
评论(0)