javascript與php使用json傳遞數(shù)據(jù)

  1. javascript:
    <script>
    function loadDoc(file,async=true){
    if(window.XMLHttpRequest){  // code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
    }else{  // code for IE6, IE5
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    if(async === true){
    xmlhttp.onreadystatechange = function(){
        if(xmlhttp.readyState < 4){
            // 加載中
        }else if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
            // 成功
            xmlDoc=xmlhttp.responseText;
            return xmlDoc
        }else{
            // 失敗
            xmlhttp.abort()
            return
        }
    }
    }
    xmlhttp.open("POST",file,async);
    xmlhttp.setRequestHeader("Content-type", "application/json");
    var data = {
    name:'lee'
    }
    var json = JSON.stringify(data)
    xmlhttp.send(json);
    if(async === false){
    xmlDoc=xmlhttp.responseText;
    return xmlDoc
    }
    }
    var data = loadDoc('http://localhost/test.php',false)
    console.log(data)
    </script>
  2. php:
    <?php
    header('access-control-allow-origin:*');
    header('Access-Control-Allow-Headers:WWW-Authenticate,Authorization,Set-Cookie,X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version');
    $json = file_get_contents('php://input');
    echo $json;
  3. 結(jié)果:
    javascript與php使用json傳遞數(shù)據(jù)

分享名稱:javascript與php使用json傳遞數(shù)據(jù)
本文URL:http://muchs.cn/article0/joghoo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、App開(kāi)發(fā)、電子商務(wù)做網(wǎng)站、標(biāo)簽優(yōu)化動(dòng)態(tài)網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)