您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么在php中使用Ajax對(duì)xml與json格式數(shù)據(jù)進(jìn)行處理,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
一、ajax如何處理xml數(shù)據(jù)格式
register.php
只需修改上一篇《php+Ajax無刷新驗(yàn)證用戶名操作》中chuli函數(shù)部分
functionchuli(){ // window.alert("cuhli函數(shù)被調(diào)用"+myXmlHttpRequest.readyState); //我要取出從register.php返回的數(shù)據(jù) if(myXmlHttpRequest.readyState==4){ //------------看看如何取出xml數(shù)據(jù)-------- //獲取mes節(jié)點(diǎn) var mes=myXmlHttpRequest.responseXML.getElementsByTagName("mes"); //取出mes節(jié)點(diǎn)值 var mes_value=mes[0].childNodes[0].nodeValue; $("myres").value=mes_value; } }
Process.php 代碼
<?php //第一講話告訴瀏覽器返回的數(shù)據(jù)是xml格式 header("Content-Type:text/xml;charset=utf-8"); //告訴瀏覽器不要緩存數(shù)據(jù) header("Cache-Control:no-cache"); //接收數(shù)據(jù)(這里要和請(qǐng)求方式對(duì)于 _POST 還是 _GET) $username=$_POST['username']; //這里我們看看如何處理格式是xml $info=""; if($username=="李四"){ $info.="<res><mes>用戶名不可以用,對(duì)不起</mes></res>";//注意,這里數(shù)據(jù)是返回給請(qǐng)求的頁面. }else{ $info.="<res><mes>用戶名可以用,恭喜</mes></res>"; } echo $info; ?>
二、ajax如何處理json數(shù)據(jù)格式
json格式介紹
① json的格式如下 :
"{屬性名:屬性值,屬性名:屬性值,.... }"
因?yàn)閖son數(shù)據(jù)是原生態(tài)數(shù)據(jù),因此這種數(shù)據(jù)格式很穩(wěn)定,而且描述能力強(qiáng),我們建議大家使用json格式
② json數(shù)據(jù)格式的擴(kuò)展
如果服務(wù)器返回的json 是多組數(shù)據(jù),則格式應(yīng)當(dāng)如下:
$info="[{"屬性名":"屬性值",...},{"屬性名":"屬性值",...},....]";
在xmlhttprequest對(duì)象接收到j(luò)son數(shù)據(jù)后,應(yīng)當(dāng)這樣處理
//轉(zhuǎn)成對(duì)象數(shù)組 varreses=eval("("+xmlHttpRequest.responseText+")"); //通過reses可以取得你希望的任何一個(gè)值 reses[?].屬性名
③ 更加復(fù)雜的json數(shù)據(jù)格式
<script language="JavaScript"> var people ={ "programmers": [ {"firstName":"Brett", "email": "brett@newInstance.com" }, {"firstName":"Jason", "email": "jason@servlets.com" } ], "writer": [ {"writer":"宋江","age":"50"}, {"writer":"吳用","age":"30"} ], "sex":"男" }; window.alert(people.programmers[0].firstName); window.alert(people.programmers[1].email); window.alert(people.writer[1].writer); window.alert(people.sex); </script>
register.php 部分中chuli函數(shù)
function chuli(){ if(myXmlHttpRequest.readyState==4){ //------------看看如何取出json數(shù)據(jù)-------- var mes= myXmlHttpRequest.responseText; //使用evla函數(shù)將mes轉(zhuǎn)換成相應(yīng)的對(duì)象 var mes_obj=eval("("+mes+")"); $("myres").value=mes_obj.res; } }
process.php 代碼
<?php header("Content-Type: text/html;charset=utf-8"); //告訴瀏覽器不要緩存數(shù)據(jù) header("Cache-Control: no-cache"); $info=""; if($username=="1"){ $info='{"res":"該用戶不可用"}'; } else{ //$info是一個(gè)json數(shù)據(jù)格式的字串 $info='{"res":"恭喜,用戶名可用"}'; } echo $info; ?>
上述內(nèi)容就是怎么在php中使用Ajax對(duì)xml與json格式數(shù)據(jù)進(jìn)行處理,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。