欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery ajax请求返回进入error事件

程序员文章站 2022-07-13 15:50:16
...
jquery版本1.10.1

由于服务端返回的json 数据格式问题,前端js一直进入 error 事件。

正确的格式:

"{\"responseMsg\":\"success\"}"



备注:
$.ajax({
url:'/deep/sysmng/addPermRes',
async:true,
method:'POST',
contentType:'application/x-www-form-urlencoded; charset=UTF-8',
data:'resourceIds='+resourceIds,
dataType : 'json',
error:function(jqXHR,textStatus,errorThrown ){alert(errorThrown)},
success:function(resp){
alert('success');
}
});
相关标签: jquery ajax error