小编典典

获取服务器响应并显示AJAX错误?

ajax

对于不正确的Ajax操作,我将HTTP标头代码设置为403并发送以下响应:

{"code":"403","status":"Forbidden","message":"You cannot do this"}

但是,在处理错误时我无法访问此数据…是否可以从jqXHR访问“消息”数据?

像jqXHR.message之类的东西?

非常感谢您的帮助…

EDIt:

error: function (xhr) {
            $(".alert").html(xhr.responseText);
          },

返回:

{"code":"403","status":"Forbidden","message":"You cannot do this"}

但是xhr.responseText.message不返回任何内容…

编辑:此代码有效:

  error: function (xhr) {
    var jsonResponse = JSON.parse(xhr.responseText);
    $(".alert").html(jsonResponse.message);
  },

阅读 249

收藏
2020-07-26

共1个答案

小编典典

您应该进入jQuery“错误”回调…
http://api.jquery.com/jQuery.ajax/

 error: function(xhr, status, error) {
    alert(xhr.responseText);
 }

(顺便说一下。您的代码?)

2020-07-26