第一部分 axios基本概念
1. 文档
https://github.com/axios/axios
2. 是什么
前端最流行的ajax请求库
react/vue官方都推荐使用axios发ajax请求
3. axios的特点
基本promise的异步ajax请求库
浏览器端/node端都可以使用
支持请求/响应拦截器
支持请求取消
请求/响应数据转换
批量发送多个请求
4. axios常用语法
axios(config): 通用/最本质的发任意类型请求的方式
axios(url[, config]): 可以只指定url发get请求
axios.request(config): 等同于axios(config)
axios.get(url[, config]): 发get请求
axios.delete(url[, config]): 发delete请求
axios.post(url[, data, config]): 发post请求
axios.put(url[, data, config]): 发put请求
axios.defaults.xxx: 请求的默认全局配置
axios.interceptors.request.use(): 添加请求拦截器
axios.interceptors.response.use(): 添加响应拦截器
axios.create([config]): 创建一个新的axios(它没有下面的功能)
axios.Cancel(): 用于创建取消请求的错误对象
axios.CancelToken(): 用于创建取消请求的token对象
axios.isCancel(): 是否是一个取消请求的错误
axios.all(promises): 用于批量执行多个异步请求
axios.spread(): 用来指定接收所有成功数据的回调函数的方法
5. 难点语法理解与使用
1). axios.create(config)
a. 根据指定配置创建一个新的axios, 也就是每个新axios都有自己的配置
b. 新axios只是没有取消请求和批量发请求的方法, 其它所有语法都是一致的
c. 为什么要设计这个语法?
需求: 项目中有部分接口需要的配置与另一部分接口需要的配置不太一样, 如何处理
解决: 创建2个新axios, 每个都有自己特有的配置, 分别应用到不同要求的接口请求中
2). 拦截器函数/ajax请求/请求的回调函数的调用顺序
a. 说明: 调用axios()并不是立即发送ajax请求, 而是需要经历一个较长的流程
b. 流程: 请求拦截器2 => 请求拦截器1 => 发ajax请求 => 响应拦截器1 => 响应拦截器2 => 请求的回调
c. 注意: 此流程是通过promise串连起来的, 请求拦截器传递的是config, 响应拦截器传递的是response
错误流程控制与错误处理
3). 取消请求
a. 基本流程:
配置cancelToken对象
缓存用于取消请求的cancel函数
在后面特定时机调用cancel函数取消请求
在错误回调中判断如果error是cancel, 做相应处理
b. 实现功能
点击按钮, 取消某个正在请求中的请求
在请求一个接口前, 取消前面一个未完成的请求
6.json-server是什么?
用来快速搭建REST API的工具包
7. 使用json-server
在线文档: https://github.com/typicode/json-server
下载: npm install -g json-server
目标根目录下创建数据库json文件: db.json
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}
启动服务器
执行命令: json-server --watch db.json
8. 测试访问1: 使用浏览器
http://localhost:3000/posts
http://localhost:3000/posts/1
9. 测试访问: 使用axios
<script src="https://cdn.bootcss.com/axios/0.19.0/axios.js"></script>
<script>
// 30分钟内不再发预检请求
// axios.defaults.headers["Access-Control-Max-Age"] = "1800"
/* 1. GET请求: 从服务器端获取数据*/
function testGet() {
// axios.get('http://localhost:3000/posts') // 获取所有posts的数组
// axios.get('http://localhost:3000/posts/1') // 获取id为1的数组
// axios.get('http://localhost:3000/posts?id=1&id=2') // 获取id为1或2的数组
// axios.get('http://localhost:3000/posts?title=json-server&author=typicode')
}
testGet()
/* 2. POST请求: 向服务器端添加新数据*/
function testPost() {
// axios.post('http://localhost:3000/comments', {body: 'xxx', postId: 1}) // 保存数据
}
testPost()
/* 3. PUT请求: 更新服务器端已经数据 */
function testPut() {
// axios.put('http://localhost:3000/comments/4', {body: 'yyy', postId: 1})
}
testPut()
/* 4. DELETE请求: 删除服务器端数据 */
function testDelete() {
// axios.delete('http://localhost:3000/comments/4')
}
testDelete()
</script>
第二部分 XHR理解和使用
1. 文档
https://developer.mozilla.org/zh-CN/docs/Web/API/XMLHttpRequest
2. 理解
使用XMLHttpRequest (XHR)对象可以与服务器交互, 也就是发送ajax请求
前端可以获取到数据,而无需让整个的页面刷新。
这使得Web页面可以只更新页面的局部,而不影响用户的操作。
3. 区别一般的HTTP请求与ajax请求
ajax请求是一种特别的http请求
对服务器端来说, 没有任何区别, 区别在浏览器端
浏览器端发请求: 只有XHR或fetch发出的才是ajax请求, 其它所有的都是非ajax请求
浏览器端接收到响应
一般请求: 浏览器一般会直接显示响应体数据, 也就是我们常说的刷新/跳转页面
ajax请求: 浏览器不会对界面进行任何更新操作, 只是调用监视的回调函数并传入响应相关数据
4. 使用语法
XMLHttpRequest(): 创建XHR对象的构造函数
status: 响应状态码值, 比如200, 404
statusText: 响应状态文本
readyState: 标识请求状态的只读属性
0: 初始
1: open()之后
2: send()之后
3: 请求中
4: 请求完成
onreadystatechange: 绑定readyState改变的监听
responseType: 指定响应数据类型, 如果是'json', 得到响应后自动解析响应体数据
response: 响应体数据, 类型取决于responseType的指定
timeout: 指定请求超时时间, 默认为0代表没有限制
ontimeout: 绑定超时的监听
onerror: 绑定请求网络错误的监听
open(): 初始化一个请求, 参数为: (method, url[, async])
send(data): 发送请求
abort(): 中断请求
getResponseHeader(name): 获取指定名称的响应头值
getAllResponseHeaders(): 获取所有响应头组成的字符串
setRequestHeader(name, value): 设置请求头
5. XHR的简单封装
1). 特点
函数的返回值为promise, 成功的结果为response, 异常的结果为error
能处理多种类型的请求: GET/POST/PUT/DELETE
函数的参数为一个配置对象
响应json数据自动解析为js
2) 编码实现
/*
使用XHR封装发送ajax请求的通用函数
返回值: promise
参数为配置对象
url: 请求地址
params: 包含所有query请求参数的对象
data: 包含所有请求体参数数据的对象
method: 为请求方式
*/
function axios({url, params={}, data={}, method='GET'}) {
// 返回一个promise对象
return new Promise((resolve, reject) => {
// 创建一个XHR对象
const request = new XMLHttpRequest()
// 根据params拼接query参数
let queryStr = Object.keys(params).reduce((pre, key) => {
pre += `&${key}=${params[key]}`
return pre
}, '')
if (queryStr.length>0) {
queryStr = queryStr.substring(1)
url += '?' + queryStr
}
// 请求方式转换为大写
method = method.toUpperCase()
// 初始化一个异步请求(还没发请求)
request.open(method, url, true)
// 绑定请求状态改变的监听
request.onreadystatechange = function () {
// 如果状态值不为4, 直接结束(请求还没有结束)
if (request.readyState !== 4) {
return
}
// 如果响应码在200~~299之间, 说明请求都是成功的
if (request.status>=200 && request.status<300) {
// 准备响应数据对象
const responseData = {
data: request.response,
status: request.status,
statusText: request.statusText
}
// 指定promise成功及结果值
resolve(responseData)
} else { // 请求失败了
// 指定promise失败及结果值
const error = new Error('request error staus '+ request.status)
reject(error)
}
}
// 指定响应数据格式为json ==> 内部就是自动解析好
request.responseType = 'json'
// 如果是post/put请求
if (method==='POST' || method==='PUT') {
// 设置请求头: 使请求体参数以json形式传递
request.setRequestHeader('Content-Type', 'application/json;charset=utf-8')
// 包含所有请求参数的对象转换为json格式
const dataJson = JSON.stringify(data)
// 发送请求, 指定请求体数据
request.send(dataJson)
} else {// GET/DELETE请求
// 发送请求
request.send(null)
}
})
}
3). 测试
function testGet() {
axios({
url: 'http://localhost:3000/comments',
// url: 'http://localhost:3000/comments2',
params: {id: 5, body: 'aaaa'},
}).then(response => {
console.log('get success', response.data, response)
}).catch(error => {
alert(error.message)
})
}
function testPost() {
axios({
url: 'http://localhost:3000/comments',
// url: 'http://localhost:3000/comments2',
method: 'POST',
data: { body: 'aaaa', postId: 2 }
}).then(response => {
console.log('post success', response.data, response)
}).catch(error => {
alert(error.message)
})
}
function testPut() {
axios({
// url: 'http://localhost:3000/comments/6',
url: 'http://localhost:3000/comments/3',
method: 'put',
data: {body: 'abcdefg', "postId": 2}
}).then(response => {
console.log('put success', response.data, response)
}).catch(error => {
alert(error.message)
})
}
function testDelete() {
axios({
url: 'http://localhost:3000/comments/6',
method: 'delete',
}).then(response => {
console.log('delete success', response.data, response)
}).catch(error => {
alert(error.message)
})
}
第三部分 取消请求
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"