Ajax 非同步載入解析_AJAX相關

來源:互聯網
上載者:User

AJAX (Asynchronous JavaScript and XML,非同步 JavaScript 和 XML)。它不是新的程式設計語言,而是一種使用現有標準的新方法,是在不重新載入整個頁面的情況下與伺服器交換資料並更新部分網頁的藝術。
那麼,讓我們一起走進AJax的世界吧。

基礎文法

學習Ajax之前,我們要明確自己的需求,那就是在不重新整理頁面的前提下實現非同步與伺服器進行互動,更新頁面資訊。使用Ajax其實也是很簡單的,我們只需要遵循一定的步驟即可。
 •建立Ajax對象(原生的需要判斷當前瀏覽器的類型)
 •設定回呼函數 (完成與伺服器的互動之後所觸發的函數)
 •開啟請求,並發送。(根據請求方式的不同,代碼書寫稍有不同)
 •用戶端獲得反饋資料,更新頁面 

擷取Ajax對象

不同的瀏覽器對Ajax的支援是不一致的,所以我們要區別的對待。

設定回呼函數

設定回呼函數的目的就是在Ajax完成與伺服器的互動之後,將擷取到的資料資訊,添加到頁面上。

通常我們會指定onreadystatechange函數作為我們的回調處理函數。

相關於Ajax與伺服器互動有如下狀態資訊供我們在編碼的過程找中參考。

.readystate

關於載入狀態有如下幾個常用的數值:
 •0: 請求未初始化
 •1: 伺服器串連已建立
 •2: 請求已接收
 •3: 請求處理中
 •4: 請求已完成,且響應已就緒 

.status

載入結果的狀態資訊有:
 •200: “OK”

 •404: “未找到此頁面”

 開啟互動

一談起互動,映入腦海的就是雙方。也就是我們的ajax用戶端和伺服器之間的互動。所以我們需要明確請求資料在伺服器上的位置

open(method,url,async) 

url的使用會根據method的不同而不同,這一點我們務必要清楚。至於asynchronous這個參數,一般來說對於資料量很小的請求可以採用false,但是建議使用true來進行非同步載入,來避免伺服器壓力過大。

 •GET方式 

只是用這種方式很簡單,指定url在伺服器上的位置即可。這裡紅色部分的理解相當的重要。我們務必指定url為請求在伺服器上的位置,一般採用絕對路徑的方式。

// 對Servlet來說指定其註解上的位置即可xmlhttp.open("GET","/Test/servlet/AjaxServlet?userinput="+str.value,true);  xmlhttp.send();

 •POST方式 

使用POST方式的時候,我們需要額外的多一項處理。如下例:

xmlhttp.open("POST","ajax_test.asp",true);xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");// 在send方法中指定要傳輸的參數資訊即可xmlhttp.send("fname=Bill&lname=Gates");

用戶端更新頁面

對於Ajax來說,顧名思義。是採用xml形式來傳輸資料的。但是目前而言,這不再是唯一的一種形式了。那麼我們怎麼將擷取到的資料更新到網頁上呢?有如下兩種方式。
 •如果來自伺服器的響應並非 XML,請使用 responseText 屬性。
 document.getElementById("myDiv").innerHTML=xmlhttp.responseText;

 •如果來自伺服器的響應是 XML,而且需要作為 XML 對象進行解析,請使用 responseXML 屬性: 

xmlDoc=xmlhttp.responseXML;txt="";x=xmlDoc.getElementsByTagName("ARTIST");for (i=0;i<x.length;i++) { txt=txt + x[i].childNodes[0].nodeValue + "<br />"; }document.getElementById("myDiv").innerHTML=txt;

執行個體體驗

瞭解了這些基礎文法之後,我們就可以在實際的開發中簡單的應用了。為了更好的完成此次實驗,我先做了一個簡單的JavaWeb,來處理我們的Ajax請求。

使用Servlet方式

AjaxServlet.java

package one;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;/** * Servlet implementation class AjaxServlet */@WebServlet("/AjaxServlet")public class AjaxServlet extends HttpServlet { private static final long serialVersionUID = 1L; /**  * @see HttpServlet#HttpServlet()  */ public AjaxServlet() {  super();  // TODO Auto-generated constructor stub } /**  * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse  *  response)  */ protected void doGet(HttpServletRequest request, HttpServletResponse response)   throws ServletException, IOException {  // TODO Auto-generated method stub  //response.getWriter().append("Served at: ").append(request.getContextPath());  String userinput = request.getParameter("userinput");  System.out.println("用戶端串連!");  System.out.println("請求資訊為:" + userinput);  PrintWriter out = response.getWriter();  if(userinput.equals("") || userinput.length()<6) {   response.setContentType("text/html;charset=UTF-8");   response.setCharacterEncoding("UTF-8");   response.setHeader("Content-Type", "text/html;charset=utf-8");   out.write("<h3>the length of input string must be more than 6!</h3>");  }else{   response.setContentType("text/html;charset=UTF-8");   response.setCharacterEncoding("UTF-8");   response.setHeader("Content-Type", "text/html;charset=utf-8");   out.println("<h3>Correct!</h3>");  }  out.close(); } /**  * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse  *  response)  */ protected void doPost(HttpServletRequest request, HttpServletResponse response)   throws ServletException, IOException {  // TODO Auto-generated method stub  doGet(request, response); }}

 web.xml

<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> <display-name>Test</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <servlet> <servlet-name>AjaxServlet</servlet-name> <servlet-class>one.AjaxServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>AjaxServlet</servlet-name> <url-pattern>/servlet/AjaxServlet</url-pattern> </servlet-mapping></web-app>

ajax.html

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Ajax測試</title></head><body><div> <h2>AJAX Test</h2> <input type="text" name="userinput" placeholder="使用者輸入,Ajax方式獲得資料" onblur="getResult(this)"> <br> <span id="ajax_result"></span> <script> getResult = function(str){  var httpxml;  if(0 == str.value.length) {   document.getElementById("ajax_result").innerHTML = "Nothing";   }   if (window.XMLHttpRequest) {   xmlhttp = new XMLHttpRequest();  }else{   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");  }  xmlhttp.onreadystatechange = function(){   if(4 == xmlhttp.readyState && 200 == xmlhttp.status) {    document.getElementById("ajax_result").innerHTML = xmlhttp.responseText;   }  }  xmlhttp.open("GET","/Test/servlet/AjaxServlet?userinput="+str.value,true);  xmlhttp.send();  } </script></div></body></html>

實驗結果
 •長度小於6時:

 •長度大於等於6:

使用JSP方式

receiveParams.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%   //接收參數   String userinput = request.getParameter("userinput");   //控制台輸出表單資料看看   System.out.println("userinput =" + userinput);   //檢查code的合法性   if (userinput == null || userinput.trim().length() == 0) {     out.println("code can't be null or empty");   } else if (userinput != null && userinput.equals("admin")) {     out.println("code can't be admin");   } else {     out.println("OK");  } %>

ajax.html

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Ajax測試</title></head><body><div> <h2>AJAX Test</h2> <input type="text" name="userinput" placeholder="使用者輸入,Ajax方式獲得資料" onblur="getResult(this)"> <br> <span id="ajax_result"></span> <script> getResult = function(str){  var httpxml;  if(0 == str.value.length) {   document.getElementById("ajax_result").innerHTML = "Nothing";   }   if (window.XMLHttpRequest) {   xmlhttp = new XMLHttpRequest();  }else{   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");  }  xmlhttp.onreadystatechange = function(){   if(4 == xmlhttp.readyState && 200 == xmlhttp.status) {    document.getElementById("ajax_result").innerHTML = xmlhttp.responseText;   }  }  //xmlhttp.open("GET","/Test/servlet/AjaxServlet?userinput="+str.value,true);  xmlhttp.open("GET","receiveParams.jsp?userinput="+str.value,true);  xmlhttp.send();  } </script></div></body></html>

效果一致。

JQuery 中的Ajax

前面介紹的是原生的Ajax實現方式,我們需要做的工作還是很多的,而JQuery協助我們完成了平台無關性的工作,我們只需要專註於商務邏輯的開發即可。直接用jquery的.post或者.get或者.ajax方法,更方便更簡單,js代碼如下:
 •.POST方式

 $.post("./newProject",{newProjectName:project_name},   function(data,status){  //alert("data:" + data + "status:" + status);  if(status == "success"){   var nodes = data.getElementsByTagName("project");   //alert(nodes[0].getAttribute("name"));   for(var i = 0;i < nodes.length;i ++){    $("#project_items").append("<option value=\"" + (i+1) + "\">" + nodes[i].getAttribute("name") + "</option>");    }  } })

 •.ajax方式

 $(function(){  //按鈕單擊時執行  $("#testAjax").click(function(){    //Ajax調用處理   $.ajax({    type: "POST",    url: "test.php",    data: "name=garfield&age=18",    success: function(data){      $("#myDiv").html('<h2>'+data+'</h2>');     }   });   }); });

 •.get方式

 $(document).ready(function(){ $("#bt").click(function(){ $.get("mytest/demo/antzone.txt",function(data,status){  alert("Data:"+data+"\nStatus:"+status); }) })})

總結

今天的示範對於實際開發的過程中,伺服器端的使用者輸入資料驗證,或者即時更新頁面而又減少網路流量是非常的有必要的。而且用處也很廣泛,還能有效提升使用者體驗。

這次的案例,就當是拋磚引玉,給你的應用也添加上非同步載入吧。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.