首頁 >後端開發 >php教程 >ajax - xmlhttprequest send json在php端接受数据的问题

ajax - xmlhttprequest send json在php端接受数据的问题

WBOY
WBOY原創
2016-06-06 20:45:031242瀏覽

<code class="lang-javascript">    var uinfo   = {};
    var uname   = document.getElementById('uname'); 
    var upwd    = document.getElementById('upwd');  
    uinfo['uname']  = uname.value;
    uinfo['upwd']   = upwd.value; 
    var usent = JSON.stringify(uinfo);
    var xhr = null;
    if(window.XMLHttpRequest){
        xhr = new XMLHttpRequest();
    }else{
        xhr = ActiveXObject('Microsoft.XMLHttp');
    }
    xhr.open("POST", "/controler/login.php",true);
    //etc
     xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    xhr.send(usent);
</code>

然后php端怎么接受js发送的数据呢?
$_POST['']
拿不到数据,这部分的格式具体是要指定呢,求大神指导下~~

多谢~!

回复内容:

<code class="lang-javascript">    var uinfo   = {};
    var uname   = document.getElementById('uname'); 
    var upwd    = document.getElementById('upwd');  
    uinfo['uname']  = uname.value;
    uinfo['upwd']   = upwd.value; 
    var usent = JSON.stringify(uinfo);
    var xhr = null;
    if(window.XMLHttpRequest){
        xhr = new XMLHttpRequest();
    }else{
        xhr = ActiveXObject('Microsoft.XMLHttp');
    }
    xhr.open("POST", "/controler/login.php",true);
    //etc
     xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    xhr.send(usent);
</code>

然后php端怎么接受js发送的数据呢?
$_POST['']
拿不到数据,这部分的格式具体是要指定呢,求大神指导下~~

多谢~!

答案太弱了...

<code>xhr.send('json='+usent);
</code>

你可以用file_get_contents(‘php://input’);尝试打印看看是什么,可以去看看这一篇文章

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn