AJAX用法

Posted 饮尽杯中月

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AJAX用法相关的知识,希望对你有一定的参考价值。

HTTP(hypertext transport protocol)协议『超文本传输协议』,协议详细规定了浏览器和万维网服务器之间互相通信的规则。

请求报文

重点是格式与参数

行      POST  /s?ie=utf-8  HTTP/1.1 
头      Host: atguigu.com
        Cookie: name=guigu
        Content-type: application/x-www-form-urlencoded
        User-Agent: chrome 83
空行
体      username=admin&password=admin

响应报文

行      HTTP/1.1  200  OK
头      Content-Type: text/html;charset=utf-8
        Content-length: 2048
        Content-encoding: gzip
空行    
体      <html>
            <head>
            </head>
            <body>
                <h1>努力</h1>
            </body>
        </html>

原生AJAX

1-GET

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AJAX GET 请求</title>
    <style>
        #result 
            width: 200px;
            height: 100px;
            border: solid 1px #90b;
        
    </style>
</head>

<body>
    <button>点击发送请求</button>
    <div id="result"></div>

    <script>
        //获取button元素
        const btn = document.getElementsByTagName('button')[0];
        const result = document.getElementById("result");
        //绑定事件
        btn.onclick = function() 
            //1. 创建对象
            const xhr = new XMLHttpRequest();
            //2. 初始化 设置请求方法和 url
            xhr.open('GET', 'http://127.0.0.1:8000/server?a=100&b=200&c=300');
            //3. 发送
            xhr.send();
            //4. 事件绑定 处理服务端返回的结果
            // on  when 当....时候
            // readystate 是 xhr 对象中的属性, 表示状态 0 1 2 3 4
            // 0:未初始化。尚未调用open()方法
            // 1:启动。已经调用open()方法,但尚未调用send()方法。
            // 2:发送。已经调用send()方法。但未接收到响应。
            // 3:接收。已经接收到部分响应数据。
            // 4:完成。已经接收到全部响应数据,而且已经可以在客户端使用了应已完成;您可以获取并使用服务器的响应了
            // change  改变
            xhr.onreadystatechange = function() 
                //判断 (服务端返回了所有的结果)
                if (xhr.readyState === 4) 
                    //判断响应状态码 200  404  403 401 500
                    //状态码的5大类:
                    /* 1xx:信息响应类,表示接收到请求并且继续处理。
                    2xx:处理成功响应类,表示动作被成功接收、理解和接受。
                    3xx:重定向响应类,表示为了完成指定的动作,必须接收进一步的处理。
                    4xx:客户端错误,表示客户请求包含语法错误或者不能正确执行。
                    5xx:服务端错误,表示服务器不能正确执行一个执行的请求。 */

                    // 当readyState值为4时表示服务器响应完成,客户端接收到了全部的数据,但是否是我们需要的数据无法确定,所以通常需要在确定了接收到全部数据后还要检查status的值,有如下处理         
                    // 2xx 成功
                    if (xhr.status >= 200 && xhr.status < 300) 
                        //处理结果  行 头 空行 体
                        //响应 
                        // console.log(xhr.status);//状态码
                        // console.log(xhr.statusText);//状态字符串
                        // console.log(xhr.getAllResponseHeaders());//所有响应头
                        // console.log(xhr.response);//响应体
                        //设置 result 的文本
                        result.innerHTML = xhr.response;
                     else 

                    
                
            


        
    </script>
</body>

</html>
//1. 引入express
const express = require('express');

//2. 创建应用对象
const app = express();

//3. 创建路由规则
// request 是对请求报文的封装
// response 是对响应报文的封装
app.get('/server', (request, response) => 
    //设置响应头  设置允许跨域
    response.setHeader('Access-Control-Allow-Origin', '*');
    //设置响应体
    response.send('HELLO AJAX - 2');
);
//4. 监听端口启动服务
app.listen(8000, () => 
    console.log("服务已经启动, 8000 端口监听中....");
);

2-POST

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AJAX POST 请求</title>
    <style>
        #result
            width:200px;
            height:100px;
            border:solid 1px #903;
        
    </style>
</head>
<body>
    <div id="result"></div>
    <script>
        //获取元素对象
        const result = document.getElementById("result");
        //绑定事件
        result.addEventListener("mouseover", function()
            //1. 创建对象
            const xhr = new XMLHttpRequest();
            //2. 初始化 设置类型与 URL
            xhr.open('POST', 'http://127.0.0.1:8000/server');
            //设置请求头
            xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
            xhr.setRequestHeader('name','atguigu');
            //3. 发送
            xhr.send('a=100&b=200&c=300');
            // xhr.send('a:100&b:200&c:300');
            // xhr.send('1233211234567');
            
            //4. 事件绑定
            xhr.onreadystatechange = function()
                //判断
                if(xhr.readyState === 4)
                    if(xhr.status >= 200 && xhr.status < 300)
                        //处理服务端返回的结果
                        result.innerHTML = xhr.response;
                    
                
            
        );
    </script>
</body>
</html>
//post改为all:因为最后ajax还会发一个Options请求,检测请求头信息是否可用
//可以接收任意类型的请求 
app.all('/server', (request, response) => 
    //设置响应头  设置允许跨域
    response.setHeader('Access-Control-Allow-Origin', '*');
    //响应头:所有类型的头信息均可以接受
    response.setHeader('Access-Control-Allow-Headers', '*');
    //设置响应体
    response.send('HELLO AJAX POST');
);

3-JSON

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>JSON响应</title>
    <style>
        #result
            width:200px;
            height:100px;
            border:solid 1px #89b;
        
    </style>
</head>
<body>
    <div id="result"></div>
    <script>
        const result = document.getElementById('result');
        //绑定键盘按下事件
        window.onkeydown = function()
            //发送请求
            const xhr = new XMLHttpRequest();
            //设置响应体数据的类型
            xhr.responseType = 'json';
            //初始化
            xhr.open('GET','http://127.0.0.1:8000/json-server');
            //发送
            xhr.send();
            //事件绑定
            xhr.onreadystatechange = function()
                if(xhr.readyState === 4)
                    if(xhr.status >= 200 && xhr.status < 300)
                        //
                        // console.log(xhr.response);
                        // result.innerHTML = xhr.response;
                        // 1. 手动对数据转化
                        // let data = JSON.parse(xhr.response);
                        // console.log(data);
                        // result.innerHTML = data.name;
                        // 2. 自动转换
                        console.log(xhr.response);
                        result.innerHTML = xhr.response.name;
                    
                
            
        
    </script>
</body>
</html>
app.all('/json-server', (request, response) => 
    //设置响应头  设置允许跨域
    response.setHeader('Access-Control-Allow-Origin', '*');
    //响应头
    response.setHeader('Access-Control-Allow-Headers', '*');
    //响应一个数据
    const data = 
        name: 'atguigu'
    ;
    //对对象进行字符串转换
    let str = JSON.stringify(data);
    //设置响应体
    // send()仿佛智能放字符串或者buffer
    response.send(str);
);

4-IE缓存问题

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>IE缓存问题</title>
    <style>
        #result
            width:200px;
            height:100px;
            border:solid 1px #258;
        
    </style>
</head>
<body>
    <button>点击发送请求</button>
    <div id="result"></div>
    <script>
        const btn = document.getElementsByTagName('button')[0];
        const result = document.querySelector('#result');

        btn.addEventListener('click', function()
            const xhr = new XMLHttpRequest();
            xhr.open("GET",'http://127.0.0.1:8000/ie?t='+Date.now());
            xhr.send();
            xhr.onreadystatechange = function()
                if(xhr.readyState === 4)
                    if(xhr.status >= 200 && xhr.status< 300)
                        result.innerHTML = xhr.response;
                    
                
            
        )
    </script>
</body>
</html>
//针对 IE 缓存
app.get('/ie', (request, response) => 
    //设置响应头  设置允许跨域
    response.setHeader('Access-Control-Allow-Origin', '*');
    //设置响应体
    response.send('HELLO IE - 5');
);

5-超时与网络异常

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>请求超时与网络异常</title>
    <style>
        #result
            width:200px;
            height:100px;
            border:solid 1px #90b;
        
    </style>
</head>
<body>
    <button>点击发送请求</button>
    <div id="result"></div>
    <script>
        const btn = document.getElementsByTagName('button')[0];
        const result = document.querySelector('#result');

        btn.addEventListener('click', function()
            const xhr = new XMLHttpRequest();
            //超时设置 2s 设置
            xhr.timeout = 2000;
            //超时回调
            xhr.ontimeout = function()
                alert("网络异常, 请稍后重试!!");
            
            //网络异常回调
            xhr.onerror = function()
                alert("你的网络似乎出了一些问题!");
            

            xhr.open("GET",'http://127.0.0.1:8000/delay');
            xhr.send();
            xhr.onreadystatechange = function()
                if(xhr.readyState === 4)
                    if(xhr.status >= 200 && xhr.status< 300)
                        result.innerHTML = xhr.response;
                    
                
            
        )
    </script>
</body>
</html>
//延时响应
app.all('/delay', (request, response) => 
    //设置响应头  设置允许跨域
    response.setHeader('Access-Control-Allow-Origin', '*');
    response.setHeader('Access-Control-Allow-Headers', '*');
    setTimeout(() => 
        //设置响应体
        response.send('延时响应');
    , 1000)
);

6-取消请求

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>取消请求</title>
</head>
<body>
    <button>点击发送</button>
    <button>点击取消</button>
    <script>以上是关于AJAX用法的主要内容,如果未能解决你的问题,请参考以下文章

jQuery ajax - serialize() 方法

springboot themleaf ajax总结

jQuery ajax - serialize() 方法-输出序列化表单值

Ajax OR Form !

Ajax用法总结

ajax用法