admin管理员组文章数量:1388929
I am trying to send some html data to php script using ajax xmlhttprequest post method. But for some reason My XHR POST REQUEST is cut off and not all data get transferred to my doit.php script. However the same html data from textarea form get passed to doit.php script correctly via normal form post method! could you guys help me overe this problem and be able to pass this html data via xhr request ?
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST",".php?Name=test&Id=12345",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("outputtext="+siteContents);
I am trying to send some html data to php script using ajax xmlhttprequest post method. But for some reason My XHR POST REQUEST is cut off and not all data get transferred to my doit.php script. However the same html data from textarea form get passed to doit.php script correctly via normal form post method! could you guys help me overe this problem and be able to pass this html data via xhr request ?
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","http://www.mysite./doit.php?Name=test&Id=12345",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("outputtext="+siteContents);
Share
Improve this question
edited Feb 3, 2013 at 21:08
user1788736
asked Feb 3, 2013 at 21:01
user1788736user1788736
2,84521 gold badges68 silver badges118 bronze badges
2 Answers
Reset to default 5I think you should also encodeURIComponent() your siteContents string:
xmlhttp.send("outputtext=" + encodeURIComponent(siteContents));
That's because POST variables are delimited by an ampersand (&
). The problem probably is that your string is also containing an ampersand which will be interpret as the beginning of a new POST variable.
You could easily check this if you output all received POST variables in your PHP script:
var_dump($_POST);
This looks like a GET request to me, because of the question mark and name/value pairs in the URL:
http://www.mysite./doit.php?Name=test&Id=12345
Here's how to make a POST request with AJAX:
http://www.javascriptkit./dhtmltutors/ajaxgetpost2.shtml
本文标签:
版权声明:本文标题:javascript - Is there any data limit size for ajax xmlhttprequest post method my xhr get cut off? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744599805a2614999.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论