gpt4 book ai didi

javascript - php向ajax发送值失败错误

转载 作者:行者123 更新时间:2023-12-03 04:38:23 25 4
gpt4 key购买 nike

我正在尝试将值从ajax发送到php并检索它只是为了测试一切是否正常,当我单击按钮进行测试时,我收到错误并出现警报('失败'),我该如何修复它为了获得成功?谢谢

Ajax :

  var a = "test";
$.ajax({
url: "search.php",
dataType: "json",
data: a ,
success: function(data) {
alert('Successfully');
},
error: function(data) {
alert('Failed');
}
})

PHP:

    <?php
$pictures = "img1";
echo json_encode($pictures);
?>

最佳答案

我稍微改进了你的代码并且它有效。

    var a = "test";
$.ajax({
type: 'POST',
url: 'search.php',
data: 'a=' + a,
dataType: 'json',
cache: false,
success: function (result) {
alert('Successful');
},
error: function (result) {
alert('Failed');
}
});

关于javascript - php向ajax发送值失败错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43195716/

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