gpt4 book ai didi

php - xmlHttp 字符串传递

转载 作者:行者123 更新时间:2023-11-30 23:49:09 27 4
gpt4 key购买 nike

我当前使用的 xmlhttp 函数正在将一个非常小的 int 传递到 php 文件,以便使用 GET 方法进行处理。

xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
{
alert ("Browser does not support HTTP Request");
return;
}
var url="user_submit.php";
url=url+"?vote="+value;
url=url+"&sid="+Math.random();
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
function stateChanged()
{
if (xmlhttp.readyState==4)
{
document.getElementById("captionbox").innerHTML=xmlhttp.responseText;
}
}

现在我想处理这个ajax请求中的comment框,我想这需要POST调用?谁能帮我解决这个问题吗?

我需要通过这个ajax请求将评论框的内容发送到php文件进行处理,然后添加到DB中。

最佳答案

...
var url="user_submit.php",
data="vote="+value+"&sid="+Math.random();
xmlHttp.setRequestHeader("Content-type","application/x-www-form-urlencoded; charset=UTF-8");
xmlHttp.setRequestHeader("Content-length", data.length);
xmlhttp.open("POST",url,true);
...
xmlHttp.send( data );
...

关于php - xmlHttp 字符串传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1937784/

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