gpt4 book ai didi

jquery - 使用 json - ajax 进行验证

转载 作者:行者123 更新时间:2023-12-01 08:16:56 26 4
gpt4 key购买 nike

如果我有这个 json 响应

{"error":"repeated"}

为什么没有显示警报?需要放在某个地方 dataType: "json" 吗?

$(function () {
$("#box a").click(function () {
var selectedId = $(this).attr("class");

$.post("new_list.php", {
id_user: <?php echo $id;?>,
id_list: selectedId
}, function (data) {
if(data.error == 'repeated') {
alert("error");
}
});
});
});

谢谢

最佳答案

除非您告诉它,否则它不会自动将其解析为 JSON。

$(function () {
$("#box a").click(function () {
var selectedId = $(this).attr("class");

$.post("new_list.php", {
id_user: <?php echo $id;?>,
id_list: selectedId
}, function (data) {
if(data.error == 'repeated') {
alert("error");
}
},
"json"); //Here, add this as last parameter
});
});

关于jquery - 使用 json - ajax 进行验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9996471/

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