最新的Web開發教程
 

AJAX數據庫實例


AJAX可用於與數據庫交互通信。


AJAX數據庫實例

下面的例子將演示如何網頁可以從AJAX一個數據庫中提取信息:


Customer info will be listed here...

試一試»


例子解釋-在showCustomer()函數

當用戶選擇下拉列表中的一個客戶之上,被調用函數"showCustomer()"執行。 該功能是由觸發"onchange"事件:

showCustomer

function showCustomer(str) {
  var xhttp;
  if (str == "") {
    document.getElementById("txtHint").innerHTML = "";
    return;
  }
  xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (xhttp.readyState == 4 && xhttp.status == 200) {
    document.getElementById("txtHint").innerHTML = xhttp.responseText;
    }
  };
  xhttp.open("GET", "getcustomer.asp?q="+str, true);
  xhttp.send();
}

showCustomer()函數執行以下操作:

  • 檢查是否選擇客戶
  • 創建XMLHttpRequest對象
  • 創建功能被執行時,服務器響應就緒
  • 發送請求關閉以一個文件的服務器上
  • 請注意,一個參數(q)被添加到URL(用下拉列表的內容)

AJAX服務器頁面

通過JavaScript調用上面的服務器上的頁面被稱為一個ASP文件"getcustomer.asp"

服務器文件可以很容易地在PHP或一些其它服務器的語言被重寫。

請看在PHP中對應的例子

在源代碼"getcustomer.asp"運行對數據庫的查詢,返回結果在一個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("/ datafolder /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>")
%>