PHP 實(shí)例 AJAX 與 XML

2021-11-18 09:43 更新

在 PHP 中,AJAX 可用來與 XML 文件進(jìn)行交互式通信,具體的通信過程,請參考本文內(nèi)容!


AJAX XML 實(shí)例

下面的實(shí)例將演示網(wǎng)頁如何通過 AJAX 從 XML 文件讀取信息:

實(shí)例


CD info will be listed here...



實(shí)例解釋 - HTML 頁面

當(dāng)用戶在上面的下拉列表中選擇某張 CD 時(shí),會(huì)執(zhí)行名為 "showCD()" 的函數(shù)。該函數(shù)由 "onchange" 事件觸發(fā):

<html>
 <head>
 <script>
 function showCD(str)
 {
 if (str=="")
 {
 document.getElementById("txtHint").innerHTML="";
 return;
 } 
 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("txtHint").innerHTML=xmlhttp.responseText;
 }
 }
 xmlhttp.open("GET","getcd.php?q="+str,true);
 xmlhttp.send();
 }
 </script>
 </head>
 <body>

 <form>
 Select a CD:
 <select name="cds" onchange="showCD(this.value)">
 <option value="">Select a CD:</option>
 <option value="Bob Dylan">Bob Dylan</option>
 <option value="Bonnie Tyler">Bonnie Tyler</option>
 <option value="Dolly Parton">Dolly Parton</option>
 </select>
 </form>
<div id="txtHint"><b>CD info will be listed here...</b></div>

 </body>
 </html>

showCD() 函數(shù)會(huì)執(zhí)行以下步驟:

  • 檢查是否有 CD 被選擇
  • 創(chuàng)建 XMLHttpRequest 對象
  • 創(chuàng)建在服務(wù)器響應(yīng)就緒時(shí)執(zhí)行的函數(shù)
  • 向服務(wù)器上的文件發(fā)送請求
  • 請注意添加到 URL 末端的參數(shù)(q)(包含下拉列表的內(nèi)容)

PHP 文件

上面這段通過 JavaScript 調(diào)用的服務(wù)器頁面是名為 "getcd.php" 的 PHP 文件。

PHP 腳本加載 XML 文檔,"cd_catalog.xml",運(yùn)行針對 XML 文件的查詢,并以 HTML 返回結(jié)果:

<?php
 $q=$_GET["q"];

 $xmlDoc = new DOMDocument();
 $xmlDoc->load("cd_catalog.xml");

 $x=$xmlDoc->getElementsByTagName('ARTIST');

 for ($i=0; $i<=$x->length-1; $i++)
 {
 //Process only element nodes
 if ($x->item($i)->nodeType==1)
 {
 if ($x->item($i)->childNodes->item(0)->nodeValue == $q)
 {
 $y=($x->item($i)->parentNode);
 }
 }
 }

 $cd=($y->childNodes);

 for ($i=0;$i<$cd->length;$i++)
 { 
 //Process only element nodes
 if ($cd->item($i)->nodeType==1)
 {
 echo("<b>" . $cd->item($i)->nodeName . ":</b> ");
 echo($cd->item($i)->childNodes->item(0)->nodeValue);
 echo("<br>");
 }
 }
 ?> 

當(dāng) CD 查詢從 JavaScript 發(fā)送到 PHP 頁面時(shí),將發(fā)生:

  1. PHP 創(chuàng)建 XML DOM 對象
  2. 查找所有 <artist> 元素中與 JavaScript 所傳數(shù)據(jù)相匹配的名字
  3. 輸出 album 的信息,并發(fā)送回 "txtHint" 占位符

相關(guān)教程

XML教程


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號