在下面的存根代码中,当调用error:方法时,“errorThrown”变量仅返回“object Object”。

如何获取打印出来的实际文本?

jQuery.ajax
({
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    url: myURL,

    success: function(data)
    {
        if(data['response'] === undefined){
            this.error('No data returned');
        }

        //success code goes here
    },

    error: function(errorThrown)
    {
        result += errorThrown;
alert('The error was: '+errorThrown);
        return;
    }
});

最佳答案

错误函数接收三个参数。第一个是jQueryXmlHttpRequest对象,第二个和第三个可能对您有用:

error: function(jqXHR, textStatus, errorThrown){
     alert('Error Message: '+textStatus);
     alert('HTTP Error: '+errorThrown);
}

10-02 14:43