我有一个数组student。我需要通过POST而不是从GET,在另一个php页面中传递此数组,因为它可以包含数千个字符。
我试图打开新页面sheet.php并回显数组student,我只是简单地检查echo $_POST['mnu'],但是它显示未定义的索引错误。
var http = null;
if(window.XMLHttpRequest){
http = new XMLHttpRequest();
}
else{
http = new ActiveXObject('Microsoft.XMLHTTP');
}
http.open('POST','sheet.php',true);
http.setRequestHeader('Content-type','application/x-www-form-urlencoded');
http.onreadystatechange = function(){
if(http.readyState==4 && http.status==200){
window.open('sheet.php','_blank')
}
}
http.send('mnu='+JSON.stringify(student));
收到一只叮咚
拉丁的传说