使用$.ajax进行请求时error响应,sucess不响应,代码如下:
$.ajax({
type: "post",
dataType: "JSON", // 返回JSON数据
contentType: "application/json;charset=utf-8",
解决方法:
将dataType: “JSON”,改为:dataType: “text”问题便解决了,JSON格式本来就是一种以字符串形式存在的
使用$.ajax进行请求时error响应,sucess不响应,代码如下:
$.ajax({
type: "post",
dataType: "JSON", // 返回JSON数据
contentType: "application/json;charset=utf-8",
解决方法:
将dataType: “JSON”,改为:dataType: “text”问题便解决了,JSON格式本来就是一种以字符串形式存在的