AJAX (Asynchronous JavaScript and XML,異步的 JavaScript 和 XML)。它不是新的編程語言,而是一種使用現(xiàn)有標(biāo)準(zhǔn)的新方法,是在不重新加載整個(gè)頁面的情況下與服務(wù)器交換數(shù)據(jù)并更新部分網(wǎng)頁的藝術(shù)。
那么,讓我們一起走進(jìn)AJax的世界吧。
基礎(chǔ)語法
學(xué)習(xí)Ajax之前,我們要明確自己的需求,那就是在不刷新頁面的前提下實(shí)現(xiàn)異步的與服務(wù)器進(jìn)行交互,更新頁面信息。使用Ajax其實(shí)也是很簡(jiǎn)單的,我們只需要遵循一定的步驟即可。
•創(chuàng)建Ajax對(duì)象(原生的需要判斷當(dāng)前瀏覽器的類型)
•設(shè)置回調(diào)函數(shù) (完成與服務(wù)器的交互之后所觸發(fā)的函數(shù))
•打開請(qǐng)求,并發(fā)送。(根據(jù)請(qǐng)求方式的不同,代碼書寫稍有不同)
•客戶端獲得反饋數(shù)據(jù),更新頁面
獲取Ajax對(duì)象
不同的瀏覽器對(duì)Ajax的支持是不一致的,所以我們要區(qū)別的對(duì)待。
設(shè)置回調(diào)函數(shù)
設(shè)置回調(diào)函數(shù)的目的就是在Ajax完成與服務(wù)器的交互之后,將獲取到的數(shù)據(jù)信息,添加到頁面上。
通常我們會(huì)指定onreadystatechange函數(shù)作為我們的回調(diào)處理函數(shù)。
相關(guān)于Ajax與服務(wù)器交互有如下狀態(tài)信息供我們?cè)诰幋a的過程找中參考。
.readystate
關(guān)于加載狀態(tài)有如下幾個(gè)常用的數(shù)值:
•0: 請(qǐng)求未初始化
•1: 服務(wù)器連接已建立
•2: 請(qǐng)求已接收
•3: 請(qǐng)求處理中
•4: 請(qǐng)求已完成,且響應(yīng)已就緒
.status
加載結(jié)果的狀態(tài)信息有:
•200: “OK”
•404: “未找到此頁面”
開啟交互
一談起交互,映入腦海的就是雙方。也就是我們的ajax客戶端和服務(wù)器之間的交互。所以我們需要明確請(qǐng)求數(shù)據(jù)在服務(wù)器上的位置
open(method,url,async)
url的使用會(huì)根據(jù)method的不同而不同,這一點(diǎn)我們務(wù)必要清楚。至于asynchronous這個(gè)參數(shù),一般來說對(duì)于數(shù)據(jù)量很小的請(qǐng)求可以采用false,但是建議使用true來進(jìn)行異步的加載,來避免服務(wù)器壓力過大。
•GET方式
只是用這種方式很簡(jiǎn)單,指定url在服務(wù)器上的位置即可。這里紅色部分的理解相當(dāng)?shù)闹匾N覀儎?wù)必指定url為請(qǐng)求在服務(wù)器上的位置,一般采用絕對(duì)路徑的方式。
// 對(duì)Servlet來說指定其注解上的位置即可
xmlhttp.open("GET","/Test/servlet/AjaxServlet?userinput="+str.value,true);
xmlhttp.send();
•POST方式
使用POST方式的時(shí)候,我們需要額外的多一項(xiàng)處理。如下例:
xmlhttp.open("POST","ajax_test.asp",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
// 在send方法中指定要傳輸?shù)膮?shù)信息即可
xmlhttp.send("fname=Billlname=Gates");
客戶端更新頁面
對(duì)于Ajax來說,顧名思義。是采用xml形式來傳輸數(shù)據(jù)的。但是目前而言,這不再是唯一的一種形式了。那么我們?cè)趺磳@取到的數(shù)據(jù)更新到網(wǎng)頁上呢?有如下兩種方式。
•如果來自服務(wù)器的響應(yīng)并非 XML,請(qǐng)使用 responseText 屬性。
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
•如果來自服務(wù)器的響應(yīng)是 XML,而且需要作為 XML 對(duì)象進(jìn)行解析,請(qǐng)使用 responseXML 屬性:
xmlDoc=xmlhttp.responseXML;
txt="";
x=xmlDoc.getElementsByTagName("ARTIST");
for (i=0;ix.length;i++)
{
txt=txt + x[i].childNodes[0].nodeValue + "br />";
}
document.getElementById("myDiv").innerHTML=txt;
實(shí)例體驗(yàn)
了解了這些基礎(chǔ)語法之后,我們就可以在實(shí)際的開發(fā)中簡(jiǎn)單的應(yīng)用了。為了更好的完成此次實(shí)驗(yàn),我先做了一個(gè)簡(jiǎn)單的JavaWeb,來處理我們的Ajax請(qǐng)求。
使用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("請(qǐng)求信息為:" + 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測(cè)試/title>
/head>
body>
div>
h2>AJAX Test/h2>
input type="text" name="userinput" placeholder="用戶輸入,Ajax方式獲得數(shù)據(jù)" 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>
實(shí)驗(yàn)結(jié)果
•長(zhǎng)度小于6時(shí):
•長(zhǎng)度大于等于6:
使用JSP方式
receiveParams.jsp
%@ page contentType="text/html;charset=UTF-8" language="java" %>
%
//接收參數(shù)
String userinput = request.getParameter("userinput");
//控制臺(tái)輸出表單數(shù)據(jù)看看
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測(cè)試/title>
/head>
body>
div>
h2>AJAX Test/h2>
input type="text" name="userinput" placeholder="用戶輸入,Ajax方式獲得數(shù)據(jù)" 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實(shí)現(xiàn)方式,我們需要做的工作還是很多的,而JQuery幫助我們完成了平臺(tái)無關(guān)性的工作,我們只需要專注于業(yè)務(wù)邏輯的開發(fā)即可。直接用jquery的.post或者.get或者.ajax方法,更方便更簡(jiǎn)單,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(){
//按鈕單擊時(shí)執(zhí)行
$("#testAjax").click(function(){
//Ajax調(diào)用處理
$.ajax({
type: "POST",
url: "test.php",
data: "name=garfieldage=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);
})
})
})
總結(jié)
今天的演示對(duì)于實(shí)際開發(fā)的過程中,服務(wù)器端的用戶輸入數(shù)據(jù)驗(yàn)證,或者即時(shí)更新頁面而又減少網(wǎng)絡(luò)流量是非常的有必要的。而且用處也很廣泛,還能有效的提升用戶體驗(yàn)。
這次的案例,就當(dāng)是拋磚引玉,給你的應(yīng)用也添加上異步加載吧。
您可能感興趣的文章:- jQuery Ajax 加載數(shù)據(jù)時(shí)異步顯示加載動(dòng)畫
- jQuery Ajax 異步加載顯示等待效果代碼分享
- ajax異步加載圖片實(shí)例分析
- MVC Ajax Helper或Jquery異步加載部分視圖
- 用ajax動(dòng)態(tài)加載需要的js文件
- jQuery+AJAX實(shí)現(xiàn)無刷新下拉加載更多
- jQuery 瀑布流 浮動(dòng)布局(一)(延遲AJAX加載圖片)
- php+ajax+jquery實(shí)現(xiàn)點(diǎn)擊加載更多內(nèi)容
- Jquery仿淘寶京東多條件篩選可自行結(jié)合ajax加載示例
- php+ajax實(shí)現(xiàn)無刷新動(dòng)態(tài)加載數(shù)據(jù)技術(shù)