1. 程式人生 > 其它 >SpringMVC全解-07-Ajax

SpringMVC全解-07-Ajax

Ajax

Asynchronous JavaScript and XML 非同步的JavaScript和XML。

Ajax是一種在無需重新載入整個網頁的情況下,能夠更新部分網頁的技術。

Ajax不是一種新的程式語言,而是一種用於建立更好更快以及互動性更強的web應用程式的技術。

傳統的網頁,想要更新內容或者提交一個表單,都需要重新載入整個頁面。使用ajax技術的網頁,通過在後臺伺服器進行少量資料交換,就可以實現非同步區域性更新。使用ajax,使用者可以建立接近本地桌面應用的直接、高可用、更豐更動態的web使用者介面。

利用AJAX可以做

註冊時,輸入使用者名稱自動檢測使用者是否已經存在。

登陸時,提示使用者名稱密碼錯誤。

刪除資料行時,將ID傳送到後臺,後臺在資料庫中刪除,資料庫刪除成功後,在頁面DOM中將資料行也刪除。

......

jQuery.ajax

純原生的ajax底層是XMLHttpRequest,為了避免重複造輪子,直接使用jquery提供的。JQuery AJAX本質就是XMLHttpRequest,對他進行了封裝,方便呼叫。

ajax的核心是XMLHttpRequest物件(XHR)。XHR為向伺服器傳送請求和解析伺服器響應提供了介面,能夠以非同步方式從伺服器獲取新資料。

jQuery.ajax(...)
      部分引數:
            url:請求地址
            type:請求方式,GET、POST(
1.9.0之後用method) headers:請求頭 data:要傳送的資料 contentType:即將傳送資訊至伺服器的內容編碼型別(預設: "application/x-www-form-urlencoded; charset=UTF-8") async:是否非同步 timeout:設定請求超時時間(毫秒) beforeSend:傳送請求前執行的函式(全域性) complete:完成之後執行的回撥函式(全域性) success:成功之後執行的回撥函式(全域性) error:失敗之後執行的回撥函式(全域性) accepts:通過請求頭髮送給伺服器,告訴伺服器當前客戶端可接受的資料型別 dataType:將伺服器端返回的資料轉換成指定型別
"xml": 將伺服器端返回的內容轉換成xml格式 "text": 將伺服器端返回的內容轉換成普通文字格式 "html": 將伺服器端返回的內容轉換成普通文字格式,在插入DOM中時,如果包含JavaScript標籤,則會嘗試去執行。 "script": 嘗試將返回值當作JavaScript去執行,然後再將伺服器端返回的內容轉換成普通文字格式 "json": 將伺服器端返回的內容轉換成相應的JavaScript物件 "jsonp": JSONP 格式使用 JSONP 形式呼叫函式時,如 "myurl?callback=?" jQuery 將自動替換 ? 為正確的函式名,以執行回撥函式

頁面編寫示例

匯入jquery,可以使用線上的CDN,也可以下載匯入

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="${pageContext.request.contextPath}/statics/js/jquery-3.1.1.min.js"></script>
@Controller
public class AjaxController {

   @RequestMapping("/a1")
   public void ajax1(String name , HttpServletResponse response) throws IOException{
       if ("admin".equals(name)){
           response.getWriter().print("true");
      }else{
           response.getWriter().print("false");
      }
  }

}
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
 <head>
   <title>$Title$</title>
  <%--<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>--%>
   <script src="${pageContext.request.contextPath}/statics/js/jquery-3.1.1.min.js"></script>
   <script>
       function a1(){
           $.post({
               url:"${pageContext.request.contextPath}/a1",
               data:{'name':$("#txtName").val()},
               success:function (data,status) {
                   alert(data);
                   alert(status);
              }
          });
      }
   </script>
 </head>
 <body>

<%--onblur:失去焦點觸發事件--%>
使用者名稱:<input type="text" id="txtName" onblur="a1()"/>

 </body>
</html>

例項2

@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {

   private String name;
   private int age;
   private String sex;

}
@RequestMapping("/a2")
public List<User> ajax2(){
   List<User> list = new ArrayList<User>();
   list.add(new User("李扶搖1號",3,"男"));
   list.add(new User("李扶搖2號",3,"男"));
   list.add(new User("李扶搖3號",3,"男"));
   return list; //由於@RestController註解,將list轉成json格式返回
}
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
   <title>Title</title>
</head>
<body>
<input type="button" id="btn" value="獲取資料"/>
<table width="80%" align="center">
   <tr>
       <td>姓名</td>
       <td>年齡</td>
       <td>性別</td>
   </tr>
   <tbody id="content">
   </tbody>
</table>

<script src="${pageContext.request.contextPath}/statics/js/jquery-3.1.1.min.js"></script>
<script>

   $(function () {
       $("#btn").click(function () {
           $.post("${pageContext.request.contextPath}/a2",function (data) {
               console.log(data)
               var html="";
               for (var i = 0; i <data.length ; i++) {
                   html+= "<tr>" +
                       "<td>" + data[i].name + "</td>" +
                       "<td>" + data[i].age + "</td>" +
                       "<td>" + data[i].sex + "</td>" +
                       "</tr>"
              }
               $("#content").html(html);
          });
      })
  })
</script>
</body>
</html>

註冊提示示例

在註冊的時候,輸入框後面顯示提示

@RequestMapping("/a3")
public String ajax3(String name,String pwd){
   String msg = "";
   //模擬資料庫中存在資料
   if (name!=null){
       if ("admin".equals(name)){
           msg = "OK";
      }else {
           msg = "使用者名稱輸入錯誤";
      }
  }
   if (pwd!=null){
       if ("123456".equals(pwd)){
           msg = "OK";
      }else {
           msg = "密碼輸入有誤";
      }
  }
   return msg; //由於@RestController註解,將msg轉成json格式返回
}
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
   <title>ajax</title>
   <script src="${pageContext.request.contextPath}/statics/js/jquery-3.1.1.min.js"></script>
   <script>

       function a1(){
           $.post({
               url:"${pageContext.request.contextPath}/a3",
               data:{'name':$("#name").val()},
               success:function (data) {
                   if (data.toString()=='OK'){
                       $("#userInfo").css("color","green");
                  }else {
                       $("#userInfo").css("color","red");
                  }
                   $("#userInfo").html(data);
                   
              }
          });
      }
       function a2(){
           $.post({
               url:"${pageContext.request.contextPath}/a3",
               data:{'pwd':$("#pwd").val()},
               success:function (data) {
                   if (data.toString()=='OK'){
                       $("#pwdInfo").css("color","green");
                  }else {
                       $("#pwdInfo").css("color","red");
                  }
                   $("#pwdInfo").html(data);
              }
          });
      }

   </script>
</head>
<body>
<p>
  使用者名稱:<input type="text" id="name" onblur="a1()"/>
   <span id="userInfo"></span>
</p>
<p>
  密碼:<input type="text" id="pwd" onblur="a2()"/>
   <span id="pwdInfo"></span>
</p>
</body>
</html>

獲取百度介面Demo

<!DOCTYPE HTML>
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   <title>JSONP百度搜索</title>
   <style>
       #q{
           width: 500px;
           height: 30px;
           border:1px solid #ddd;
           line-height: 30px;
           display: block;
           margin: 0 auto;
           padding: 0 10px;
           font-size: 14px;
      }
       #ul{
           width: 520px;
           list-style: none;
           margin: 0 auto;
           padding: 0;
           border:1px solid #ddd;
           margin-top: -1px;
           display: none;
      }
       #ul li{
           line-height: 30px;
           padding: 0 10px;
      }
       #ul li:hover{
           background-color: #f60;
           color: #fff;
      }
   </style>
   <script>

       // 2.步驟二
       // 定義demo函式 (分析介面、資料)
       function demo(data){
           var Ul = document.getElementById('ul');
           var html = '';
           // 如果搜尋資料存在 把內容新增進去
           if (data.s.length) {
               // 隱藏掉的ul顯示出來
               Ul.style.display = 'block';
               // 搜尋到的資料迴圈追加到li裡
               for(var i = 0;i<data.s.length;i++){
                   html += '<li>'+data.s[i]+'</li>';
              }
               // 迴圈的li寫入ul
               Ul.innerHTML = html;
          }
      }

       // 1.步驟一
       window.onload = function(){
           // 獲取輸入框和ul
           var Q = document.getElementById('q');
           var Ul = document.getElementById('ul');

           // 事件滑鼠抬起時候
           Q.onkeyup = function(){
               // 如果輸入框不等於空
               if (this.value != '') {
                   // ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆JSONPz重點☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
                   // 建立標籤
                   var script = document.createElement('script');
                   //給定要跨域的地址 賦值給src
                   //這裡是要請求的跨域的地址 我寫的是百度搜索的跨域地址
                   script.src ='https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd='+this.value+'&cb=demo';
                   // 將組合好的帶src的script標籤追加到body裡
                   document.body.appendChild(script);
              }
          }
      }
   </script>
</head>

<body>
<input type="text" id="q" />
<ul id="ul">

</ul>
</body>
</html>