AJAX中文參考手冊login
AJAX中文參考手冊
作者:php.cn  更新時間:2022-04-12 16:00:57

AJAX 資料庫



AJAX 可用於與資料庫進行動態通訊。


AJAX 資料庫實例

下面的範例將示範網頁如何透過 AJAX 從資料庫讀取資訊: 請在下面的下拉清單中選擇一個客戶:

實例

<html><!DOCTYPE html>
<html>
<head>
<script>
function showCustomer(str)
{
var xmlhttp;    
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","/try/ajax/getcustomer.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>

<form action=""> 
<select name="customers" onchange="showCustomer(this.value)" style="font-family:Verdana, Arial, Helvetica, sans-serif;">
<option value="APPLE">Apple Computer, Inc.</option>
<option value="BAIDU ">BAIDU, Inc</option>
<option value="Canon">Canon USA, Inc.</option>
<option value="Google">Google, Inc.</option>
<option value="Nokia">Nokia Corporation</option>
<option value="SONY">Sony Corporation of America</option>
</select>
</form>
<br>
<div id="txtHint">Customer info will be listed here...</div>

</body>
</html>

##運行實例»點擊"運行實例" 按鈕查看線上實例



實例解釋- showCustomer() 函數

當使用者在上面的下拉清單中選擇某個客戶時,會執行名為"showCustomer()" 的函式。此函數由"onchange" 事件觸發:

function showCustomer(str)
{
var xmlhttp;
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("HMLHint").NMLHMLHint"). .responseText;
    }
  }
xmlhttp.open("GET","getcustomer.html?q="+str,true);
xmlhttp.send();
}

showCustomer() 函數執行下列任務:

  • ##檢查是否已選擇某個客戶

  • 建立XMLHttpRequest 物件

  • 當伺服器回應就緒時執行所建立的函數

  • 把請求傳送到伺服器上的檔案

  • 請注意我們為URL 新增了一個參數q (帶有輸入域中的內容)


#AJAX 伺服器頁面

由上面的JavaScript 呼叫的伺服器頁面是PHP 文件,名稱為"getcustomer.php"。

用 PHP 寫伺服器檔案也很容易,或用其他伺服器語言

。請看用 PHP 寫的對應的範例

"getcustomer.php" 中的原始碼負責對資料庫進行查詢,然後用HTML 表格傳回結果:

<%
response.expires= -1
sql="SELECT * FROM CUSTOMERS WHERE CUSTOMERID="
sql=sql & "'" & request.querystring("q") & "'"

#set conn=Server. CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open(Server.Mappath("/db/northwind.mdb"))
set rs =Server.CreateObject("ADODB.recordset")
rs.Open sql,conn

response.write("<table>")
do until rs.EOF
    for each x in rs.Fields
          response.write("<tr><td><b>" & x.name & "</b></td>")
          response.write("<td>" & x.value & "</td></tr>")
    next
    rs.MoveNext
loop
response.write("</table>")
%>