1. 程式人生 > 實用技巧 >利用VLMCSD部署本地KMS伺服器

利用VLMCSD部署本地KMS伺服器

7、Ajax研究

7.1 簡介

  • AJAX = Asynchronous JavaScript and XML(非同步的 JavaScript 和 XML)。

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

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

  • 在 2005 年,Google 通過其 Google Suggest 使 AJAX 變得流行起來。Google Suggest能夠自動幫你完成搜尋單詞。

  • Google Suggest 使用 AJAX 創造出動態性極強的 web 介面:當您在谷歌的搜尋框輸入關鍵字時,JavaScript 會把這些字元傳送到伺服器,然後伺服器會返回一個搜尋建議的列表。

  • 就和國內百度的搜尋框一樣!

  • 傳統的網頁(即不用ajax技術的網頁),想要更新內容或者提交一個表單,都需要重新載入整個網頁。

  • 使用ajax技術的網頁,通過在後臺伺服器進行少量的資料交換,就可以實現非同步區域性更新。

  • 使用Ajax,使用者可以建立接近本地桌面應用的直接、高可用、更豐富、更動態的Web使用者介面。

7.2 偽造Ajax

我們可以使用前端的一個標籤來偽造一個ajax的樣子。iframe標籤

1、新建一個module :springmvc-06-ajax , 匯入web支援!

2、編寫一個 ajax-frame.html 使用 iframe 測試,感受下效果

通過輸入一個網址 按鈕點選事件 可以在iframe中出現頁面

<!DOCTYPE html>
<html>
<head lang="en">
   <meta charset="UTF-8">
   <title>kuangshen</title>
</head>
<body>

<script type="text/javascript">
   window.onload = function(){
       var myDate = new Date();
       document.getElementById('currentTime').innerText = myDate.getTime();
  };

   function LoadPage(){
       var targetUrl =  document.getElementById('url').value;
       console.log(targetUrl);
       document.getElementById("iframePosition").src = targetUrl;
  }

</script>

<div>
   <p>請輸入要載入的地址:<span id="currentTime"></span></p>
   <p>
       <input id="url" type="text" value="https://www.baidu.com/"/>
       <input type="button" value="提交" onclick="LoadPage()">
   </p>
</div>

<div>
   <h3>載入頁面位置:</h3>
   <iframe id="iframePosition" style="width: 100%;height: 500px;"></iframe>
</div>

</body>
</html>

3、使用IDEA開瀏覽器測試一下!

利用AJAX可以做:

  • 註冊時,輸入使用者名稱自動檢測使用者是否已經存在。
  • 登陸時,提示使用者名稱密碼錯誤
  • 刪除資料行時,將行ID傳送到後臺,後臺在資料庫中刪除,資料庫刪除成功後,在頁面DOM中將資料行也刪除。
  • ....等等

7.3 jQuery.ajax

純JS原生實現Ajax我們不去講解這裡,直接使用jquery提供的,方便學習和使用,避免重複造輪子,有興趣的同學可以去了解下JS原生XMLHttpRequest !

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

jQuery 提供多個與 AJAX 有關的方法。

通過 jQuery AJAX 方法,您能夠使用 HTTP Get 和 HTTP Post 從遠端伺服器上請求文字、HTML、XML 或 JSON – 同時您能夠把這些外部資料直接載入網頁的被選元素中。

jQuery 不是生產者,而是大自然搬運工。

jQuery Ajax本質就是 XMLHttpRequest,對他進行了封裝,方便呼叫!

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 將自動替換 ? 為正確的函式名,以執行回撥函式

我們來個簡單的測試,使用最原始的HttpServletResponse處理 , .最簡單 , 最通用

1、配置web.xml 和 springmvc的配置檔案,複製上面案例的即可 【記得靜態資源過濾和註解驅動配置上】

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:context="http://www.springframework.org/schema/context"
      xmlns:mvc="http://www.springframework.org/schema/mvc"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       https://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/mvc
       https://www.springframework.org/schema/mvc/spring-mvc.xsd">

   <!-- 自動掃描指定的包,下面所有註解類交給IOC容器管理 -->
   <context:component-scan base-package="com.kuang.controller"/>
   <mvc:default-servlet-handler />
   <mvc:annotation-driven />

   <!-- 檢視解析器 -->
   <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
         id="internalResourceViewResolver">
       <!-- 字首 -->
       <property name="prefix" value="/WEB-INF/jsp/" />
       <!-- 字尾 -->
       <property name="suffix" value=".jsp" />
   </bean>

</beans>

2、編寫一個AjaxController 有一個請求a1

@Controller
public class AjaxController {

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

}

3、匯入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>

4、編寫index.jsp測試

當文字框失去焦點 會呼叫test函式 函式中會發起ajax請求 向a1請求

這裡data中的鍵name要與a1請求 引數一致

<%@ 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 test() {
        $.post({
          url:"${pageContext.request.contextPath}/a1",
          data:{"name":$("#username").val()},
          success:function (data,status) {
            console.log("data="+data);
            console.log("status="+status);
          }
        });
      }
    </script>
 </head>
 <body>

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

 </body>
</html>

5、啟動tomcat測試!開啟瀏覽器的控制檯,當我們滑鼠離開輸入框的時候,可以看到發出了一個ajax的請求!是後臺返回給我們的結果!測試成功!

從中可以看出引數為yhn 發出的為XHR請求也就是ajax請求

7.4 Ajax 非同步獲取資料

我們做一個 前端發出ajax請求到後端資料的demo

首先我們建立一個User類

@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
    private String name;
    private int age;
    private String sex;
}

再去寫一個請求

這裡有一些資料 需要前端一會來請求

@RequestMapping("/a2")
public List<User> ajax2(){
    ArrayList<User> userList = new ArrayList<User>();
    userList.add(new User("yhn",1,"男"));
    userList.add(new User("yhn666",1,"男"));
    userList.add(new User("yhn555",1,"女"));
    // 這裡由於@RestController 將list轉為json返回
    return userList;
}

寫一個頁面 按鈕點選時間去發起ajax請求

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
    <script src="${pageContext.request.contextPath}/static/js/jquery-3.5.1.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>
</head>
<body>
<input type="button" id="btn" value="獲取資料" ></input>
<table>

    <thead>
        <td>姓名</td>
        <td>年齡</td>
        <td>性別</td>

    </thead>
    <tbody id="content">

    </tbody>
</table>
</body>
</html>

結果如下:

首先Console中打印出了我們後臺的資料

當點選按鈕時 我們這裡利用拼接的方式將資料回顯在頁面上

7.5 Ajax驗證註冊提示效果

當我們註冊一個賬號 當輸入完使用者名稱後 系統就會立馬顯示 該賬戶是否已經被註冊

這裡用到的技術就是ajax

註冊頁面:

兩個輸入框 會有onblur焦點監聽 當失去焦點時 會發起ajax請求 查資料庫 並將查詢的結果返回到頁面上

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
    <script src="${pageContext.request.contextPath}/static/js/jquery-3.5.1.js"></script>
    <script>
        function a1() {
            $.post({
                url:"${pageContext.request.contextPath}/a3",
                data:{"name":$("#name").val()},
                success:function (data) {
                    if (data.toString() == 'ok'){
                        $("#nameInfo").css("color","green");
                    }else{
                        $("#nameInfo").css("color","red");
                    }
                    // 將data顯示在span元素上
                    $("#nameInfo").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");
                    }
                    // 將data顯示在span元素上
                    $("#pwdInfo").html(data);
                }
            });
        }
    </script>
</head>
<body>
<p>
    使用者名稱:<input type="text" id="name" onblur="a1()">
    <span id="nameInfo"></span>

</p>
<p>
    密碼:<input type="text" id="pwd" onblur="a2()">
    <span id="pwdInfo"></span>
</p>
</body>
</html>

我們寫一個Controller 為前端的ajax提供資料

@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;
    }

結果如下: