gpt4 book ai didi

php - Ajax post数据用php采集数据

转载 作者:行者123 更新时间:2023-11-28 21:10:25 26 4
gpt4 key购买 nike

当谈到使用 Ajax 发布数据时,我有点迷失。这是我使用的代码:

ajaxRequest.open("post", "serverTime.php", true);
ajaxRequest.send(somedata);

我不确定如何在我的 php 脚本中获取这些数据?我怎么知道它叫什么?它只是被称为“somedata”吗?如果我想使用多个变量来传递怎么办?

我认为我在寻找一些愚蠢的东西,但我真的很难在互联网上找到我要找的东西

谢谢希望你能帮忙。

最佳答案

http://www.openjs.com/articles/ajax_xmlhttp_using_post.php

// excerpt
var url = "get_data.php";
var params = "lorem=ipsum&name=binny";
http.open("POST", url, true);

http.send(params);

在 get_data.php 中,您可以通过 $_POST 调用它们:

echo $_POST['lorem']; // == ipsum
echo $_POST['name']; // == binny

示例如下:http://www.openjs.com/scripts/examples/ajax_using_post.php

关于php - Ajax post数据用php采集数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8836273/

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