在前端通过ajax请求后台之后返回的时候,出现了下面的异常:
error: function(req,textStatus,errorThrown){}
req:
textStatus:"parsererror";
errorThrown:undefined.
而自己的ajax请求如下:
type: 'POST',
contentType: 'application/json',
data: JSON.stringify(dataModel.dataSource()),
url: url1,
async: false,
dataType: 'json',
解决方案:将dataType注释掉就可了,原因是我的返回值是一个字符串而不是一个对象~~
原文链接:https://www.f2er.com/ajax/162950.html