gpt4 book ai didi

php - 使用ajax不断收到未定义的请求

转载 作者:行者123 更新时间:2023-12-02 19:00:00 26 4
gpt4 key购买 nike

使用ajax代码:

$.ajaxSetup({
url: "last-id-test.php",
type: "POST",
});

$.ajax({
data: {theinfo: 'forminfo'},
success: function(data) {alert(data)},
error: function (XMLHttpRequest, textStatus, errorThrown){alert('Error submitting request.')}
});

然后是last-id-test.php的简单php:

$showme = $_GET['theinfo'];

我总是收到错误“未定义索引 - theinfo”...

我看不到我的错误?

最佳答案

正如评论中提到的,GET 和 POST 方法会导致数据被传递到 PHP 中的不同全局变量 - GET == $_GET POST == $_POST

所以在这种情况下尝试在你的 php 中:

$showme = $_POST['theinfo'];

对于调试很有用

print_r($_GET);//或 $_POST 或 $_COOKIE

有关这些全局变量的更多信息:http://www.php.net/manual/en/reserved.variables.php

关于php - 使用ajax不断收到未定义的请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14885827/

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