Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_vue
提交
b45c5ea6
S
skill_tree_vue
项目概览
CSDN 技术社区
/
skill_tree_vue
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_vue
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
b45c5ea6
编写于
5月 05, 2022
作者:
Z
zhaoss
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
2.5.3小节习题、关键字添加
上级
2e515537
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
176 addition
and
0 deletion
+176
-0
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/config.json
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/config.json
+18
-0
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/exercises.json
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/exercises.json
+8
-0
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/exercises.md
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/exercises.md
+150
-0
未找到文件。
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/config.json
0 → 100644
浏览文件 @
b45c5ea6
{
"node_id"
:
"vue-f9bf772e800842deb661d5417adfdf43"
,
"keywords"
:
[
"请求拦截器"
,
"axios拦截器"
,
"取消请求"
,
"响应拦截器"
],
"children"
:
[],
"export"
:
[
"exercises.json"
],
"keywords_must"
:
[
"axios"
],
"keywords_forbid"
:
[]
}
\ No newline at end of file
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/exercises.json
0 → 100644
浏览文件 @
b45c5ea6
{
"type"
:
"code_options"
,
"author"
:
null
,
"source"
:
"exercises.md"
,
"notebook_enable"
:
false
,
"exercise_id"
:
"00e895ceea48452ab5656bbf216f738b"
}
\ No newline at end of file
data/2.Vue中阶/5.Axios/3.拦截器、取消请求/exercises.md
0 → 100644
浏览文件 @
b45c5ea6
# 拦截器、取消请求
<div
style=
"color: pink;font-size:22px;font-weight:700"
>
小常识:
</div>
<br>
在请求或响应被 then 或 catch 处理前拦截它们。
```
javascript
// 添加请求拦截器
axios
.
interceptors
.
request
.
use
(
function
(
config
)
{
// 在发送请求之前做些什么
return
config
;
},
function
(
error
)
{
// 对请求错误做些什么
return
Promise
.
reject
(
error
);
});
```
```
javascript
// 添加响应拦截器
axios
.
interceptors
.
response
.
use
(
function
(
response
)
{
// 对响应数据做点什么
return
response
;
},
function
(
error
)
{
// 对响应错误做点什么
return
Promise
.
reject
(
error
);
});
```
如果你想在稍后移除拦截器,可以这样:
```
javascript
const
myInterceptor
=
axios
.
interceptors
.
request
.
use
(
function
()
{
/*...*/
});
axios
.
interceptors
.
request
.
eject
(
myInterceptor
);
```
可以为自定义 axios 实例添加拦截器
```
javascript
const
instance
=
axios
.
create
();
instance
.
interceptors
.
request
.
use
(
function
()
{
/*...*/
});
```
错误处理
```
javascript
axios
.
get
(
'
/user/12345
'
)
.
catch
(
function
(
error
)
{
if
(
error
.
response
)
{
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
console
.
log
(
error
.
response
.
data
);
console
.
log
(
error
.
response
.
status
);
console
.
log
(
error
.
response
.
headers
);
}
else
if
(
error
.
request
)
{
// The request was made but no response was received
// `error.request` is an instance of XMLHttpRequest in the browser and an instance of
// http.ClientRequest in node.js
console
.
log
(
error
.
request
);
}
else
{
// Something happened in setting up the request that triggered an Error
console
.
log
(
'
Error
'
,
error
.
message
);
}
console
.
log
(
error
.
config
);
});
```
也可以使用 validateStatus 配置选项定义一个自定义 HTTP 状态码的错误范围。
```
javascript
axios
.
get
(
'
/user/12345
'
,
{
validateStatus
:
function
(
status
)
{
return
status
<
500
;
// Reject only if the status code is greater than or equal to 500
}
})
```
**取消**
使用 cancel token 取消请求
> Axios 的 cancel token API 基于cancelable promises proposal,它还处于第一阶段。
可以使用 CancelToken.source 工厂方法创建 cancel token,像这样:
```
javascript
const
CancelToken
=
axios
.
CancelToken
;
const
source
=
CancelToken
.
source
();
axios
.
get
(
'
/user/12345
'
,
{
cancelToken
:
source
.
token
}).
catch
(
function
(
thrown
)
{
if
(
axios
.
isCancel
(
thrown
))
{
console
.
log
(
'
Request canceled
'
,
thrown
.
message
);
}
else
{
// 处理错误
}
});
axios
.
post
(
'
/user/12345
'
,
{
name
:
'
new name
'
},
{
cancelToken
:
source
.
token
})
// 取消请求(message 参数是可选的)
source
.
cancel
(
'
Operation canceled by the user.
'
);
```
还可以通过传递一个 executor 函数到 CancelToken 的构造函数来创建 cancel token:
```
javascript
const
CancelToken
=
axios
.
CancelToken
;
let
cancel
;
axios
.
get
(
'
/user/12345
'
,
{
cancelToken
:
new
CancelToken
(
function
executor
(
c
)
{
// executor 函数接收一个 cancel 函数作为参数
cancel
=
c
;
})
});
// cancel the request
cancel
();
```
注意: 可以使用同一个 cancel token 取消多个请求
<br>
<div
style=
"color: #8E7CC3;font-size:22px;font-weight:700"
>
小测试:
</div>
如何中断axios的请求?
<br/><br/>
## 答案
axios.CancelToken()
## 选项
### A
axios.Cancel()
### B
axios.create()
### C
axios.Destroy()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录