是否有任何库支持为XMLHTTPRequest创建发布数据 在javascript中。 考虑发送帖子数据如下。
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";
答案 0 :(得分:1)
JQuery.param()
怎么样?请参阅http://api.jquery.com/jquery.param/。
var params = {
lorem:ipsum,
name:binny
};
var str = jQuery.param( params );
// str = lorem=ipsum&name=binny
另一方面,这次,vanilla JavaScript解决方案将来自this post。
答案 1 :(得分:0)
查看qwest简单,有效且权重仅为8.5K