AJAX 數(shù)據(jù)庫

2018-09-20 21:43 更新

AJAX 數(shù)據(jù)庫實(shí)例


AJAX 可用來與數(shù)據(jù)庫進(jìn)行交互式通信。


AJAX 數(shù)據(jù)庫實(shí)例

下面的實(shí)例將演示網(wǎng)頁如何通過 AJAX 從數(shù)據(jù)庫讀取信息:

實(shí)例


Customer info will be listed here...


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

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

<!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),那么該函數(shù)會(huì)清空 txtHint 占位符,然后退出該函數(shù)。

如果已選擇一位客戶,則 showCustomer() 函數(shù)會(huì)執(zhí)行以下步驟:

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

ASP 文件

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

"getcustomer.asp" 中的源代碼會(huì)運(yùn)行一次針對(duì)數(shù)據(jù)庫的查詢,然后在 HTML 表格中返回結(jié)果:

<%
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>")
%>

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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)