gpt4 book ai didi

php - 使用ajax和php简单的成功/错误返回

转载 作者:行者123 更新时间:2023-12-01 06:48:02 27 4
gpt4 key购买 nike

刚刚开始学习 ajax,尽管我在尝试以数组返回成功消息时遇到了麻烦。

<script type="text/javascript">
$(function () {
$('#delete').on('click', function () {
var $form = $(this).closest('form');
$.ajax({
type: $form.attr('method'),
url: $form.attr('action'),
data: $form.serialize()
}).done(function (response) {
if (response.success) {
alert('Saved!');
} else {
alert('Some error occurred.');
}
});
});
});
</script>

<?php
$array = array();
$array['success'] = TRUE;
echo $array;
?>

response.success 应该引用 $array['success'] 正确吗?

最佳答案

您正在尝试回显您的数组,这只会吐出“Array”。

相反,您需要将数组编码为 JSON 并回显该内容。

更改此:

echo $array;

对此:

echo json_encode($array);

此外,您可能需要在 ajax 参数中添加 dataType ,以便 jQuery 自动解析响应:

dataType : 'json' // stick this after "data: $form.serialize()" for example

另外,这里有一篇关于如何正确处理 ajax 调用的成功/错误的好文章(感谢@Shawn):

Jquery checking success of ajax post

关于php - 使用ajax和php简单的成功/错误返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20411059/

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