AJAX Database 实例

AJAX 可用于同数据库进行交互式通信。

AJAX Database 实例

下面的例子演示:网页如何通过 AJAX 从数据库中读取信息:

实例

  1. <form action="" style="margin-top:15px;">
  2. <label>请选择一位客户:
  3. <select name="customers" onchange="showCustomer(this.value)" style="font-family:Verdana, Arial, Helvetica, sans-serif;">
  4. <option value="APPLE">Apple Computer, Inc.</option>
  5. <option value="BAIDU">BAIDU, Inc</option>
  6. <option value="Canon">Canon USA, Inc.</option>
  7. <option value="Google">Google, Inc.</option>
  8. <option value="Nokia">Nokia Corporation</option>
  9. <option value="SONY">Sony Corporation of America</option>
  10. </select>
  11. </label>
  12. </form>
  13. 客户信息将在此处列出。

例子解释 - showCustomer() 函数

当用户在上面的下拉列表中选择一位客户后,执行名为 "showCustomer()" 函数。此函数被 onchange 事件触发:

showCustomer

  1. function showCustomer(str) {
  2. var xhttp;
  3. if (str == "") {
  4. document.getElementById("txtHint").innerHTML = "";
  5. return;
  6. }
  7. xhttp = new XMLHttpRequest();
  8. xhttp.onreadystatechange = function() {
  9. if (this.readyState == 4 && this.status == 200) {
  10. document.getElementById("txtHint").innerHTML = this.responseText;
  11. }
  12. };
  13. xhttp.open("GET", "getcustomer.asp?q=" + str, true);
  14. xhttp.send();
  15. }

showCustomer() 函数进行如下:

  • 检查是否选取客户
  • 创建 XMLHttpRequest 对象
  • 创建当服务器响应就绪时执行的函数
  • 向服务器上的文件发送请求
  • 请注意,参数 q 被添加到 URL(带有下拉列表的内容)

AJAX 服务器页面

被以上 JavaScript 调用的服务器页面是名为 "getcustomer.asp" 的 ASP 文件。

使用 PHP 或其他服务器语言能够轻松重写该服务器文件。

请参见对应的 PHP 实例

"getcustomer.asp" 中的源代码中运行面向数据库的查询,并在 HTML 表格中返回结果:

  1. <%
  2. response.expires=-1
  3. sql="SELECT * FROM CUSTOMERS WHERE CUSTOMERID="
  4. sql=sql & "'" & request.querystring("q") & "'"
  5.  
  6. set conn=Server.CreateObject("ADODB.Connection")
  7. conn.Provider="Microsoft.Jet.OLEDB.4.0"
  8. conn.Open(Server.Mappath("customers.mdb"))
  9. set rs=Server.CreateObject("ADODB.recordset")
  10. rs.Open sql,conn
  11.  
  12. response.write("<table>")
  13. do until rs.EOF
  14. for each x in rs.Fields
  15. response.write("<tr><td><b>" & x.name & "</b></td>")
  16. response.write("<td>" & x.value & "</td></tr>")
  17. next
  18. rs.MoveNext
  19. loop
  20. response.write("</table>")
  21. %>