AJAX 數(shù)據(jù)庫
ajax 數(shù)據(jù)庫實(shí)例
ajax 可用來與數(shù)據(jù)庫進(jìn)行交互式通信。
ajax 數(shù)據(jù)庫實(shí)例
下面的實(shí)例將演示網(wǎng)頁如何通過 ajax 從數(shù)據(jù)庫讀取信息:
實(shí)例
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","getcustomer.asp?q="+str,true);
xmlhttp.send();
}
select a customer: alfreds futterkiste north/south wolski zajazd
customer info will be listed here...
實(shí)例解釋 - html 頁面
當(dāng)用戶在上面的下拉列表中選擇某位客戶時(shí),會執(zhí)行名為 "showcustomer()" 的函數(shù)。該函數(shù)由 "onchange" 事件觸發(fā):
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();
}
select a customer: alfreds futterkiste north/south wolski zajazd
customer info will be listed here...
源代碼解釋:
如果沒有選擇客戶(str.length==0),那么該函數(shù)會清空 txthint 占位符,然后退出該函數(shù)。
如果已選擇一位客戶,則 showcustomer() 函數(shù)會執(zhí)行以下步驟:
- 創(chuàng)建 xmlhttprequest 對象
- 創(chuàng)建在服務(wù)器響應(yīng)就緒時(shí)執(zhí)行的函數(shù)
- 向服務(wù)器上的文件發(fā)送請求
- 請注意添加到 url 末端的參數(shù)(q)(包含下拉列表的內(nèi)容)
asp 文件
上面這段通過 javascript 調(diào)用的服務(wù)器頁面是名為 "getcustomer.asp" 的 asp 文件。
"getcustomer.asp" 中的源代碼會運(yùn)行一次針對數(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("")
do until rs.eof
for each x in rs.fields
response.write("")
response.write("")
next
rs.movenext
loop
response.write("
")
%>
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("")
do until rs.eof
for each x in rs.fields
response.write("")
response.write("")
next
rs.movenext
loop
response.write("
" & x.name & " | " & x.value & " |
%>