gpt4 book ai didi

javascript - 支持 JavaScript 中的 POST 数据

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

是否有任何库支持为 XMLHTTPRequest 创建发布数据在 JavaScript 中。考虑如下发送post数据。

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

//Send the proper header information along with the request
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.setRequestHeader("Content-length", params.length);
http.setRequestHeader("Connection", "close");

http.onreadystatechange = function() {//Call a function when the state changes.
if(http.readyState == 4 && http.status == 200) {
alert(http.responseText);
}
}
http.send(params);

Send POST data using XMLHttpRequest

我想知道是否有更好的方法来组装表单中的数据(而不是字符串连接)。
var params = "lorem=ipsum&name=binny";

最佳答案

JQuery.param() 怎么样?请参阅http://api.jquery.com/jquery.param/ .

var params = { 
lorem:ipsum,
name:binny
};
var str = jQuery.param( params );
// str = lorem=ipsum&name=binny

这一次,普通的 JavaScript 解决方案将来自 this post .

关于javascript - 支持 JavaScript 中的 POST 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34677834/

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