Ajax研究

原文鏈接:公衆號狂神說

簡介

  • 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用戶界面。

僞造Ajax

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>僞造AJAX</title>
</head>
<body>
<script type="text/javascript">
    window.onload = function f() {
        var myTime = new Date();
        document.getElementById("currentTime").innerText = myTime.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>
    <input type="text" id="url" value="https://www.baidu.com/">
    <input type="button" value="提交" οnclick="loadPage()">
</div>
<div>
    <h3>加載頁面的位置:</h3>
    <iframe src="" style="width: 100%; height: 500px;" id="iframePosition">

    </iframe>
</div>
</body>
</html>

利用AJAX可以做:

  • 註冊時,輸入用戶名自動檢測用戶是否已經存在。

  • 登陸時,提示用戶名密碼錯誤

  • 刪除數據行時,將行ID發送到後臺,後臺在數據庫中刪除,數據庫刪除成功後,在頁面DOM中將數據行也刪除。

  • ....等等

jQuery.ajax

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:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- 開啓註解掃描 -->
    <context:component-scan base-package="com.jyg"/>

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

    <mvc:resources location="/statics/css/" mapping="/statics/css/**"/>
    <mvc:resources location="/statics/js/" mapping="/statics/js/**"/>

    <!-- 開啓springMVC框架註解的支持 -->
    <mvc:default-servlet-handler/>
    <mvc:annotation-driven>
        <!--JSON格式亂碼處理方式-->
        <mvc:message-converters register-defaults="true">
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <constructor-arg value="UTF-8"/>
            </bean>
            <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
                <property name="objectMapper">
                    <bean class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">
                        <property name="failOnEmptyBeans" value="false"/>
                    </bean>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>


</beans>

2、編寫一個AjaxController

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

3、導入jquery , 可以使用在線的CDN , 也可以下載導入

    <script src="https://www.jq22.com/jquery/jquery-3.3.1.js"></script>

4、編寫index.jsp測試

<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<html>
<head>
    <title>AJAX</title>
    <link rel="stylesheet" href="${pageContext.request.contextPath}/statics/css/style.css">
    <script src="https://www.jq22.com/jquery/jquery-3.3.1.js"></script>
</head>

<body>

<script type="text/javascript">
    // 所有參數:
    // url: 待載入頁面的URL地址
    // data: 待發送 Key/value 參數。
    // success: 載入成功時回調函數。
    //    data:封裝服務器返回的數據
    //    status:狀態
    // dataType: 返回內容格式,xml, json,  script, text, html


    function a1() {
        //ajax默認是get請求
        $.ajax({
            url: "${pageContext.request.contextPath}/ajax/a1",
            data: {'name': $("#txtName").val()},
            success: function (data, status) {
                console.log("Get")
                console.log(data);
                console.log(status);
            }
        });
    }

    function a2() {
        //ajax的post請求
        $.post({
            url:"${pageContext.request.contextPath}/ajax/a1",
            data:{'name':$("#txtName").val()},
            success:function (data,status) {
                console.log("Post")
                console.log(data);
                console.log(status);
            }
        });
    }
</script>
<%--onblur失去焦點產生事件--%>
用戶名 <input type="text" id="txtName" οnblur="a2()">

</body>
</html>

Springmvc實現

實體類user

package com.jyg.pojo;

public class User {
    private String  name;
    private int age;
    private String sex;

    public User() {
    }
    public User(String name, int age, String sex) {
        this.name = name;
        this.age = age;
        this.sex = sex;
    }

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

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

    @Override
    public String toString() {
        return "User{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", sex='" + sex + '\'' +
                '}';
    }
}

我們來獲取一個集合對象,展示到前端頁面

    @RequestMapping("/a2")
    @ResponseBody
    public List<User> ajax2(){
        List<User> list = new ArrayList<>();
        User user1 = new User("小葉曲1", 311, "男1");
        User user2 = new User("小葉曲2", 312, "男2");
        User user3 = new User("小葉曲3", 313, "男3");
        User user4 = new User("小葉曲4", 314, "男4");
        list.add(user1);
        list.add(user2);
        list.add(user3);
        list.add(user4);
        return list;
    }

前端頁面

<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<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="https://www.jq22.com/jquery/jquery-3.3.1.js"></script>
<script type="text/javascript">
    $(function () {
        $("#btn").click(function () {
            $.post("${pageContext.request.contextPath}/ajax/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>

註冊提示效果 

我們再測試一個小Demo,思考一下我們平時註冊時候,輸入框後面的實時提示怎麼做到的;如何優化

我們寫一個Controller

    @RequestMapping("/a3")
    @ResponseBody
    public String ajax3(String name, String pwd)  {
        String msg = "";
        //模擬數據庫中存在數據
        if (name!=null){
            if ("admin".equals(name)){
                msg = "OK111";
            }else {
                msg = "用戶名輸入錯誤";
            }
        }
        if (pwd!=null){
            if ("123456".equals(pwd)){
                msg = "OK222";
            }else {
                msg = "密碼輸入有誤";
            }
        }
        return msg; //由於@ResponseBody註解,轉成json格式返回
    }

前端頁面 login.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<html>
<head>
    <title>Title</title>
    <script src="https://www.jq22.com/jquery/jquery-3.3.1.js"></script>
    <script>
        function a1() {
            $.post({
                url: "${pageContext.request.contextPath}/ajax/a3",
                data: {'name': $("#name").val()},
                success: function (data) {
                    if (data == 'OK111') {
                        $("#userInfo").css("color", "green");
                    } else {
                        $("#userInfo").css("color", "red");
                    }
                    $("#userInfo").html(data);
                }
            });
        }

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

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

【記得處理json亂碼問題】

獲取baidu接口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>

B站地址:https://space.bilibili.com/95256449

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章