Ajax,Json資料格式
同步和非同步
同步現象:客戶端傳送請求到伺服器端,當伺服器返回響應之前,客戶端都處於等待 卡死狀態
非同步現象:客戶端傳送請求到伺服器端,無論伺服器是否返回響應,客戶端都可以隨 意做其他事情,不會被卡死
Ajax的執行原理
頁面發起請求,會將請求傳送給瀏覽器核心中的Ajax引擎,Ajax引擎會提交請求到 伺服器端,在這段時間裡,客戶端可以任意進行任意操作,直到伺服器端將資料返回 給Ajax引擎後,會觸發你設定的事件,從而執行自定義的js邏輯程式碼完成某種頁面1 功能。
js原生的Ajax技術,非同步和同步操作
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script type="text/javascript"> /* 1)建立Ajax引擎物件 2)為Ajax引擎物件繫結監聽(監聽伺服器已將資料響應給引擎) 3)繫結提交地址 4)傳送請求 5)接受響應資料 */ function f1(){ //1)建立Ajax引擎物件 var xmlhttp=new XMLHttpRequest(); //2)為Ajax引擎物件繫結監聽(監聽伺服器已將資料響應給引擎) xmlhttp.onreadystatechange=function(){ //5)接受響應資料 if(xmlhttp.readyState==4&&xmlhttp.status==200){ var res=xmlhttp.responseText; document.getElementById("span1").innerHTML=res; } } //3)繫結提交地址 xmlhttp.open("GET", "${pageContext.request.contextPath}/AjaxServlet", true);//請求方式,請求地址,是否非同步 //4)傳送請求 xmlhttp.send(); } function f2(){ //1)建立Ajax引擎物件 var xmlhttp=new XMLHttpRequest(); //2)為Ajax引擎物件繫結監聽(監聽伺服器已將資料響應給引擎) xmlhttp.onreadystatechange=function(){ //5)接受響應資料 if(xmlhttp.readyState==4&&xmlhttp.status==200){ var res=xmlhttp.responseText; alert(res); } } //3)繫結提交地址 xmlhttp.open("POST", "${pageContext.request.contextPath}/AjaxServlet", true);//請求方式,請求地址,是否非同步 xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded"); //4)傳送請求 xmlhttp.send("name=張三"); } function f3(){ //1)建立Ajax引擎物件 var xmlhttp=new XMLHttpRequest(); //2)為Ajax引擎物件繫結監聽(監聽伺服器已將資料響應給引擎) xmlhttp.onreadystatechange=function(){ //5)接受響應資料 if(xmlhttp.readyState==4&&xmlhttp.status==200){ var res=xmlhttp.responseText; document.getElementById("span2").innerHTML=res; } } //3)繫結提交地址 xmlhttp.open("GET", "${pageContext.request.contextPath}/AjaxServlet", false);//請求方式,請求地址,是否非同步 //4)傳送請求 xmlhttp.send(); } </script> </head> <body> <input value="非同步訪問" type="button" onclick="f1()"> <span id="span1"></span> <br> <input value="同步訪問" type="button" onclick="f3()"> <span id="span2"></span> <br> <input value="測試" type="button" onclick="alert()"> </body> </html>
Ajaxservlet:
package com.oracle.web; import java.io.IOException; import java.util.Random; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class AjaxServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { /*request.setCharacterEncoding("utf-8"); String name=request.getParameter("name"); response.setContentType("text/html;charset=utf-8"); response.getWriter().write(name+"你好");*/ try { Thread.sleep(5000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } response.getWriter().write(new Random().nextDouble()+""); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); } }
Json資料格式
json是一種與語言無關的資料交換的格式,作用:
使用ajax進行前後臺數據交換
移動端與服務端的資料交換
Json格式:
1)物件格式:{"key1":obj,"key2":obj,"key3":obj...}
2)陣列/集合格式:[obj,obj,obj...]
例如:user物件 用json資料格式表示
{"username":"zhangsan","age":28,"password":"123","addr":"淄博"}
List<Product> 用json資料格式表示
[{"pid":"10","pname":"小米4C"},{},{}]
注意:物件格式和陣列格式可以互相巢狀
json的key是字串 jaon的value是Object
json的解析:
json是js的原生內容,也就意味著js可以直接取出json物件中的資料
Json的轉換外掛
將java的物件或集合轉成json形式字串
json的轉換外掛是通過java的一些工具,直接將java物件或集合轉換成json字串。
常用的json轉換工具有如下幾種:
1)jsonlib
2)Gson:google
3)fastjson:阿里巴巴
json例子:
<script language="JavaScript"> /** * 案例一 * {key:value,key:value} * * class Person{ * String firstname = "張"; * String lastname = "三豐"; * Integer age = 100; * } * * Person p = new Person(); * System.out.println(p.firstname); */ var person={"firstname":"張","lastname":"三豐","age":100}; alert(person.lastname); alert(person.age); </script>
<script language="JavaScript"> /** * 案例二 * [{key:value,key:value},{key:value,key:value}] * */ var persons=[{"name":"zhangsan",age:18},{"name":"lisi",age:19},{"name":"wangwu",age:20}]; alert(persons[1].name); alert(persons[2].age); </script>
<script language="JavaScript"> /** * 案例三 * { * "param":[{key:value,key:value},{key:value,key:value}] * } * * */ var school= { "c0601班":[{"name":"張三","age":23},{"name":"李四","age":20}], "c0602班":[{"name":"趙四","age":34},{"name":"王強","age":25}] }; alert(school.c0601班[1].name); </script>
jQuery的Ajax技術
jquery是一個優秀的js框架,自然對js原生的ajax進行了封裝,封裝後的ajax的操 作方法更簡潔,功能更強大,與ajax操作相關的jquery方法有如下幾種,但開發中 經常使用的有三種
1)$.get(url, [data], [callback], [type])
2)$.post(url, [data], [callback], [type])
其中:
url:代表請求的伺服器端地址
data:代表請求伺服器端的資料(可以是key=value形式也可以是json格式)
callback:表示伺服器端成功響應所觸發的函式(只有正常成功返回才執行)
type:表示伺服器端返回的資料型別(jquery會根據指定的型別自動型別轉換)
常用的返回型別:text、json、html等
3)$.ajax( { option1:value1,option2:value2... } ); ---- 以後在掌握
常用的option有如下:
async:是否非同步,預設是true代表非同步
data:傳送到伺服器的引數,建議使用json格式
dataType:伺服器端返回的資料型別,常用text和json
success:成功響應執行的函式,對應的型別是function型別
type:請求方式,POST/GET
url:請求伺服器端地址
例子:
user實體類:
package com.oracle.domain; public class User { private String name ; private int age; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } @Override public String toString() { return "User [name=" + name + ", age=" + age + "]"; } }
jsp頁面程式碼
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script src="${pageContext.request.contextPath }/jquery-1.11.3.min.js" type="text/javascript"></script> <script type="text/javascript"> function f1(){ $.get( "${pageContext.request.contextPath }/Ajax2Servlet", {"name":"zhangsan","age":18}, function(data){ alert(data.name); }, "json" ) } function f2(){ $.post( "${pageContext.request.contextPath }/Ajax2Servlet", {"name":"zhangsan","age":18}, function(data){ alert(data.name); }, "json" ) } function f3(){ $.ajax({ url:"${pageContext.request.contextPath }/Ajax2Servlet", async:true, type:"POST", data:{"name":"lusi","age":18}, success:function(data){ alert(data.name); }, error:function(){ alert("請求失敗"); }, dataType:"json" }) } </script> </head> <body> <input type="button" value="get非同步提交伺服器" onclick="f1()"> <input type="button" value="PSOT同步提交伺服器" onclick="f2()"> <input type="button" value="ajax提交伺服器" onclick="f3()"> </body> </html>
servlet程式碼:
package com.oracle.web; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.google.gson.Gson; import com.oracle.domain.User; public class Ajax2Servlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String name=request.getParameter("name"); String agestr=request.getParameter("age"); int age=Integer.parseInt(agestr); User user=new User(); user.setAge(age); user.setName(name); Gson gs=new Gson(); String js=gs.toJson(user); System.out.println(js); response.getWriter().write("{\"name\":\""+name+"\",\"age\":"+age+"}"); response.getWriter().write(js); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); } }