AJAX可以用來與數據庫進行互動交流。
AJAX數據庫實例
下面的例子將演示如何一個網頁可以從AJAX從數據庫中獲取信息:
例子解釋 - HTML頁面
當用戶選擇在下拉列表中客戶之上,一個叫函數“ showCustomer()被執行。 該功能通過觸發"onchange"事件:
<!DOCTYPE html>
<html>
<head>
<script>
function showCustomer(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","getcustomer.asp?q="+str,true);
xmlhttp.send();
}
</script>
</head
<body>
<form>
<select name="customers" onchange="showCustomer(this.value)">
<option value="">Select a customer:</option>
<option value="ALFKI">Alfreds Futterkiste</option>
<option value="NORTS ">North/South</option>
<option value="WOLZA">Wolski Zajazd</option>
</select>
</form>
<br>
<div id="txtHint">Customer info will be listed here...</div>
</body>
</html>
源代碼的解釋:
如果沒有客戶選擇(str.length==0)該函數將清除txtHint佔位符的內容和退出的功能。
如果選擇了一個客戶,該showCustomer()函數執行以下操作:
- 創建XMLHttpRequest對象
- 創建功能被執行時,服務器響應就緒
- 發送請求關閉到文件服務器上
- 請注意,一個參數(q)被添加到URL(用下拉列表的內容)
ASP文件
通過JavaScript調用上面的服務器上的頁面被稱為一個ASP文件"getcustomer.asp"
在源代碼"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>")
%>