gpt4 book ai didi

jquery - .ajax json 错误返回

转载 作者:行者123 更新时间:2023-12-03 22:53:28 25 4
gpt4 key购买 nike

$.ajax({
type: 'POST',
url: api_url+'client/'+client.id+'.json',
data: {
_method: 'delete',
id: client.id
},
success: function(data) {
$('#delete-client').html('Success');
},
error: function(data) {
$('#delete-client').css('color', 'red');
$('#delete-client').html('Error');
}
});

在错误:函数中,jquery 将接收带有 500 header 状态的 json 对象

{"errors":{"code":777,"message":"Method requested does not yet exist","data":[]}}

但是,如果我使用 data.errors.message 它不会显示错误。当我使用 console.log 返回对象时,它在 chrome 开发人员框中显示一个具有不同事件的巨大对象

已修复

var error = jQuery.parseJSON(jqXHR.responseText);
$('#delete-client').html(error.errors.message);

最佳答案

添加:数据类型:“json”......................

关于jquery - .ajax json 错误返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7862731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com