gpt4 book ai didi

javascript - 正确使用ajax成功吗?

转载 作者:行者123 更新时间:2023-11-30 17:33:28 26 4
gpt4 key购买 nike

为什么我的成功功能永远不会运行?

JavaScript:

$.ajax({
url: 'calculation.php',
type: 'POST',
dataType: "json",
data: {
data1: 2,
data2: 3
},
success: function(result){
alert(result);
}
});

PHP:

if(isset($_POST["data1"])){
$dataA = $_POST["data1"];
$dataB = $_POST["data2"];
if(dataA + dataB === 5){
echo "success";
$result = true; //I tried all 3 of these things which it seemed like others did but it still dosen't run.
return $result;
}
}

最佳答案

尝试

echo json_encode("success");

您已将数据类型设置为 json,因此您必须返回 json。

关于javascript - 正确使用ajax成功吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22519321/

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