1、基於jQuery的Ajax 1.1 基本Ajax | 參數 | 說明 | | | | | url | 請求地址 | | type | 請求類型 | | data | 請求參數 | | dataType | 返回參數 | | success | 成功處理函數 | | error | 錯誤處理函數 ...
1、基於jQuery的Ajax
1.1 基本Ajax
參數 | 說明 |
---|---|
url | 請求地址 |
type | 請求類型 |
data | 請求參數 |
dataType | 返回參數 |
success | 成功處理函數 |
error | 錯誤處理函數 |
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-3.4.1.min.js" ></script>
<script type="text/javascript">
$(function(){
//強調:基於javascript實現的ajax用法,比較繁瑣,不需要掌握
//需要掌握的是基於jQuery方式使用的Ajax
//當用戶登錄,輸入用戶名後,失去焦點,校驗登錄用戶名再系統中是否被使用
$("#uname").blur(function(){
//alert($(this).val());
//獲取輸入的用戶名,並實現非空校驗
var userName = $(this).val();
if(userName == null || userName == ""){
alert("用戶名不能為空");
return;
}
//基於jAuery的Ajax用法-基本用法
$.ajax({
"url" : "<%=request.getContextPath()%>/checkUserName",
"type" : "post",
"data" : {"userName" : userName},
"dataType" : "text",
"success" : function(data){
//alert(JSON.parse(data));
if(JSON.parse(data)){
$("#showMsg").html("用戶名存在").css({"color":"red"});
}else{
$("#showMsg").html("用戶名可用").css({"color":"#2ceb0a"});
}
},
"error" : function(){
$("#showMsg").html("未知錯誤");
}
});
</script>
1.2 get提交Ajax
語法:$.get(url,params,success)
;
//基於JQuery的Ajax用法-擴展用法1,簡寫Get方,Ajax請求
//語法:$.get(url,params,success)
$.get("<%=request.getContextPath()%>/checkUserName",{"userName":serName},function(data){
if(JSON.parse(data)){
$("#showMsg").html("用戶名存在get").css({"color":"red"});
}else{
$("#showMsg").html("用戶名可用get").css({"color":"#2ceb0a"});
}
});
1.3 post提交Ajax
語法:$.post(url,params,success)
;
//基於JQuery的Ajax用法-擴展用法1,簡寫Get方,Ajax請求
//語法:$.post(url,params,success)
$.post("<%=request.getContextPath()%>/checkUserName",{"userName" : userName},function(data){
if(JSON.parse(data)){
$("#showMsg").html("用戶名存在post").css({"color":"red"});
}else{
$("#showMsg").html("用戶名可用post").css({"color":"#2ceb0a"});
}
});
1.4 請求處理
checkUserName 對應的處理代碼;通過Response返回結果,前端接收到結果併進行處理;
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//後臺接收用戶名,校驗是否重覆
//獲取用戶參數
String userName = req.getParameter("userName");
System.out.println("AjaxServlet userName=>>"+userName);
//定義返回的結果
boolean result= false;
//模擬調用業務,查詢當前用戶名再數據中是否有記錄
List<String> userNames = Arrays.asList("kh96","kgc","Ajax");
if(userNames.contains(userName)) {
result = true;
}
//非同步請求響應結果,註意println不可以用,返回的結果會帶\n
System.out.println("AjaxServlet result==>"+result);
resp.getWriter().println(result);
}
2、登錄請求處理,並展示數據
2.1 登錄頁面
loginAnime.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<title>登錄頁面</title>
<style type="text/css">
table{
background-color:pink;
}
</style>
</head>
<body>
<form action="<%=request.getContextPath()%>/loginAnime" method="get">
<table border="1px" align="center" width="40%" cellspacing="0">
<tr style="hight:60px; font-size:16px;background-color:#B9DEE0">
<th colspan="2"> 歡迎登錄課工場KH96動漫管理系統 </th>
</tr>
<tr>
<td>用戶名:</td>
<td>
<input type="text" name="uname" id="uname" placeholder="請輸入"用戶名> </input>
<span id = "showMsg" style="text-align:center;"></span>
</td>
</tr>
<tr>
<td>用戶密碼:</td>
<td>
<input type="password" name="upwd" id="upwd" placeholder="請輸入用戶密碼"> </input>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="立即登錄" />
<input type="reset" value="重新填寫" />
</td>
</tr>
</table>
</form>
</body>
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-3.4.1.min.js" ></script>
<script type="text/javascript">
$(function(){
$("#uname").blur(function(){
//非同步請求校驗用戶名
//基於jAuery的Ajax用法-基本用法
$.post("<%=request.getContextPath()%>/checkUserName",{"userName" :$("#uname").val()},function(data){
if(JSON.parse(data)){
$("#showMsg").html("用戶名存在").css({"color":"#2ceb0a"});
}else{
$("#showMsg").html("用戶名不存在").css({"color":"red"});
}
});
});
$("form").submit(function(){
//用戶名非空校驗
var userName = $("#uname").val();
//alert(userName);
if(userName == null || userName == ""){
alter("用戶名不能為空");
//submi事件,接收false結果,會自動取消表單的提交
return false;
}
//密碼非空
var userPwd = $("#upwd").val();
//alert(userPwd);
if(userPwd == null || userPwd == ""){
alter("用戶密碼不能為空");
//submi事件,接收false結果,會自動取消表單的提交
return false;
}
//非同步提交登錄請求,如果交談用戶信息輸入正確,提示登錄成功,寧跳轉到動漫管理首頁,否則提示登錄失敗
$.post("<%=request.getContextPath()%>/loginAnime",{"userName" : userName,"userPwd":userPwd},function(data){
if(JSON.parse(data)){
alert("登錄成功");
//請求後臺獲取動漫列表數據
//location.href = "<%=request.getContextPath()%>/animes";
//請求列表頁面,使用Ajax解析json數據
location.href = "animeListJson.jsp";
}else{
alert("登錄失敗");
}
});
//由於使用了Ajax進行了非同步登錄請求,此處表單就不能再提交,否者表達再提交會出錯
return false;
});
});
</script>
</html>
註意:
再使用Ajaz提交表單時,一定要返回false,要不然表單會再提交一次;
2.2 存放數據
2.2.1 通過request域轉遞數據
AnimeServlet
public class AnimeServlet extends HttpServlet {
private static final long serialVersionUID = -4726403189879316484L;
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doPost(req, resp);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// 模擬從資料庫獲取動漫列表
List<Animes> animes = new ArrayList<>();
animes.add(new Animes(961, "玄幻", "鬥破蒼穹", "土豆", "蕭炎", "玄機科技", "2019-08-04"));
animes.add(new Animes(962, "玄幻", "完美世界", "辰東", "石昊", "福煦影視", "2020-08-05"));
animes.add(new Animes(963, "言情", "狐妖小紅娘", "小新", "白月初", "騰訊動漫", "2021-08-06"));
animes.add(new Animes(964, "言情", "秦時明月", "溫世仁", "天明", "玄機科技", "2022-08-04"));
animes.add(new Animes(965, "熱血", "鎮魂街", "許辰", "曹焱兵", "盧李工作室", "2018-08-04"));
animes.add(new Animes(966, "熱血", "霧山五行", "林魂", "聞人翊懸", "六道無魚", "2018-08-04"));
//將動漫集合放入request作用域
req.setAttribute("animes", animes);
//轉發到動漫列表頁面
req.getRequestDispatcher("web5AjaxAndJquery/animeList.jsp").forward(req, resp);
}
}
2.2.2 將數據轉成json格式響應
public class AnimeJsonServlet extends HttpServlet {
private static final long serialVersionUID = -4726403189879316484L;
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doPost(req, resp);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// 模擬從資料庫獲取動漫列表
List<Animes> animes = new ArrayList<>();
animes.add(new Animes(961, "玄幻", "鬥破蒼穹", "土豆", "蕭炎", "玄機科技", "2019-08-04"));
animes.add(new Animes(962, "玄幻", "完美世界", "辰東", "石昊", "福煦影視", "2020-08-05"));
animes.add(new Animes(963, "言情", "狐妖小紅娘", "小新", "白月初", "騰訊動漫", "2021-08-06"));
animes.add(new Animes(964, "言情", "秦時明月", "溫世仁", "天明", "玄機科技", "2022-08-04"));
animes.add(new Animes(965, "熱血", "鎮魂街", "許辰", "曹焱兵", "盧李工作室", "2018-08-04"));
animes.add(new Animes(966, "熱血", "霧山五行", "林魂", "聞人翊懸", "六道無魚", "2018-08-04"));
//將集合數據,轉換為json字元串,返回給前端
//阿裡巴巴的fasejson,將集合轉換為json字元串
String animesJson = JSON.toJSONString(animes);
System.out.println(animesJson);
//響應
resp.setContentType("text/html;charset=UTF-8");
resp.setCharacterEncoding("UTF-8");
resp.getWriter().print(animesJson);
}
}
3、獲取並展示數據
3.1 通過EL表達式取出request域域中的數據
animeList.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!-- 核心標簽庫 -->
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!-- 格式化標簽庫 -->
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<!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>動漫主頁</title>
</head>
<body>
<h2 style="text-align: center">課工場KH96班動漫管理系統</h2>
<p style="text-align: center">
名稱:<input type="text" name="animeName" size="15"/>
作者:<input type="text" name="animeAuthor" size="15"/>
分類:<select name="animeCategory">
<option value="0">全部</option>
<option value="1">玄幻</option>
<option value="2">武俠</option>
<option value="3">言情</option>
<option value="4">機甲</option>
</select>
<input type="button" value = "搜索"/>
</p>
<table border="1px" width="90%" cellspacing="0" align="center">
<thead>
<tr style="height: 80px; font-size: 30px; background-color: cyan;">
<th colspan="8">動漫詳情列表</th>
</tr>
<tr>
<th colspan="8" style="text-align: right;">歡迎: <a href="logout">退出登錄</a></th>
</tr>
<tr style="height: 40px; background-color: cyan;">
<th>編號</th>
<th>分類</th>
<th>名稱</th>
<th>作者</th>
<th>主角</th>
<th>出品</th>
<th>時間</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<!-- tbody中是動態載入的數據列表 -->
<c:forEach items="${animes}" var ="anime" varStatus="status">
<tr align="center"
<c:if test="${status.index % 2 == 1 }">
style = "background-color: pink;"
</c:if>
>
<td>${anime.animeId }</td>
<td>${anime.animeCategory } </td>
<td>${anime.animeNaem } </td>
<td>${anime.animeAuthor } </td>
<td>${anime.animeActor } </td>
<td>${anime.animeProduce } </td>
<td>${anime.animeTime } </td>
<td>
<a href="#">修改</a> |
<a href="#">刪除</a>
</td>
</tr>
</c:forEach>
</tbody>
<tfoot>
<tr>
<td colspan="8" style="height: 40px; text-align: center">
<input type="button" value="添加" id="addAnime"/>
<a href="#">首頁</a> |
<a href="#"><<上一頁</a> |
<a href="#">下一頁>></a> |
<a href="#">尾頁</a> |
共 6 條 每頁 10 條 當前第 1 頁 / 共 1 頁
</td>
</tr>
</tfoot>
</table>
</body>
</html>
3.2 直接通過jQuery添加子標簽
animeListJson.jsp
//tbody部分
<tbody>
<!-- 直接通過jQuery添加子標簽 -->
</tbody>
//處理成功返回的數據部分
"success": function(data){
//確定數據動態顯示的位置
var $tbody = $("tbody");
//alert(data);
//數據解析
// 隔行變色
var count = 1;
// 數據解析
$(data).each(function(){
// 定義顏色
var bgColor = count % 2 == 0 ? "style='background-color:#ddd;'" : "";
$("tbody").append(
"<tr align='center' " + bgColor + ">"
+ "<td>" + this.animeId + "</td>"
+ "<td>" + this.animeCategory + "</td>"
+ "<td>" + this.animeName + "</td>"
+ "<td>" + this.animeAuthor + "</td>"
+ "<td>" + this.animeActor + "</td>"
+ "<td>" + this.animeProduce + "</td>"
+ "<td>" + this.animeTime + "</td>"
+ "<td><a href='#'>修改</a> <a href='#'>刪除</a></td>"
+ "</tr>"
);
count++;
});
}
展示效果: