gpt4 book ai didi

php - 使用ajax将post数据提交到php文件

转载 作者:行者123 更新时间:2023-12-01 07:40:54 25 4
gpt4 key购买 nike

我必须使用 ajax 调用仅向 php 文件提交两个值。 php 文件将使用 $_POST[] 函数处理数据。问题是我的 ajax 代码没有正确发送数据,所以我没有在 console.log(result) 函数中得到任何结果。我该如何解决这个问题?任何想法?

Jquery:

<script type="text/javascript">
$("#signup_submit").on( "click", function() {
//alert("foo");
var _username = "foo";
var _email = "test@gmail.com";


$.post("check.php", {username: _username, email: _email}, function(result){
console.log(result);
});



});
</script>

PHP:

$username = "";
$email = "";
if ($_POST["username"] && $_POST["email"]) {
$username = $_POST["username"];
$email = $_POST["email"];
}

if ($username != "" && $email != "") {
if (!username_exists($username) && !signup_email($signup_email)) {
json_encode("good");
}else{
json_encode("bad");
}
}

最佳答案

我已经向您评论了可能的答案,但为了简化起见,我将其写在这里。您的 javascript 代码似乎没问题,但将 PHP 脚本更改为此并尝试:

$username = "";
$email = "";
$response = ""
if ($_POST["username"] && $_POST["email"]) {
$username = $_POST["username"];
$email = $_POST["email"];
}

if ($username != "" && $email != "") {
if (!username_exists($username) && !signup_email($signup_email)) {
$response = json_encode("good");
}else{
$response = json_encode("bad");
}
}
echo $response;

echo $response 因为如果您不添加该行,您将不会从 ajax 请求中获得任何结果,因此 console.log 将不会显示任何内容。

希望这对您有帮助!

关于php - 使用ajax将post数据提交到php文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48930144/

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