在Ajax JQuery中,当我在Success消息中发出警报时,我得到警告值为[object Object]
success: function(xhr) {
alert(xhr);
console.log(xhr);
$("label#successmessage").text(successmessage);
}
我所尝试的一切: -
SON.stringify(xhr);
console.log(xhr);
even tried with alert(xhr.0)
请帮帮我
答案 0 :(得分:0)
您需要在警报中使用JSON.stringify(data)来获取任何可读内容。
此外,$ data是一个与数据完全不同的变量名。