当前位置:网站首页>Nprogress plug-in progress bar
Nprogress plug-in progress bar
2022-07-05 20:29:00 【Cheng_ eighty-eight】
One 、 Installation dependency
npm install nprogress -S
Two 、 Introduce progress bar NProgress And corresponding styles (request.js In file )
import NProgress from 'nprogress'
import 'nprogress/nprogress.css'
3、 ... and 、 Use
// Request interceptor
instance.interceptors.request.use(
config => {
// stay request In the interceptor , Show the progress bar NProgress.start()
NProgress.start()
if (sessionStorage.getItem('token')) {
config.headers.Authorization = sessionStorage.getItem('token')
}
return config
},
err => {
return Promise.reject(err)
}
)
// Response interceptors
instance.interceptors.response.use(
res => {
// stay response In the interceptor , Hide progress bar NProgress.done()
NProgress.done()
if (res.status === 200) {
return Promise.resolve(res.data)
} else {
return Promise.reject(res)
}
},
err => {
return Promise.reject(err)
}
)
边栏推荐
- Fundamentals - configuration file analysis
- Informatics Orsay all in one 1339: [example 3-4] find the post order traversal | Valley p1827 [usaco3.4] American Heritage
- Practical demonstration: how can the production research team efficiently build the requirements workflow?
- 2022北京眼睛健康用品展,护眼产品展,中国眼博会11月举办
- B站UP搭建世界首个纯红石神经网络、基于深度学习动作识别的色情检测、陈天奇《机器学编译MLC》课程进展、AI前沿论文 | ShowMeAI资讯日报 #07.05
- 欢迎来战,赢取丰厚奖金:Code Golf 代码高尔夫挑战赛正式启动
- 鸿蒙系统控制LED的实现方法之经典
- Unity编辑器扩展 UI控件篇
- c語言oj得pe,ACM入門之OJ~
- 【数字IC验证快速入门】1、浅谈数字IC验证,了解专栏内容,明确学习目标
猜你喜欢
随机推荐
USACO3.4 “破锣摇滚”乐队 Raucous Rockers - DP
CTF逆向基础
【数字IC验证快速入门】7、验证岗位中必备的数字电路基础知识(含常见面试题)
Zero cloud new UI design
CCPC 2021威海 - G. Shinyruo and KFC(组合数,小技巧)
解决Thinkphp框架应用目录下数据库配置信息修改后依然按默认方式连接
Usaco3.4 "broken Gong rock" band raucous rockers - DP
14、Transformer--VIT TNT BETR
Notes on key vocabulary in the English original of the biography of jobs (12) [chapter ten & eleven]
【数字IC验证快速入门】3、数字IC设计全流程介绍
Scala基础【HelloWorld代码解析,变量和标识符】
Codeforces Round #804 (Div. 2) - A, B, C
2022年7月4日-2022年7月10日(ue4视频教程mysql)
1、强化学习基础知识点
JS implementation prohibits web page zooming (ctrl+ mouse, +, - zooming effective pro test)
信息学奥赛一本通 1337:【例3-2】单词查找树 | 洛谷 P5755 [NOI2000] 单词查找树
本季度干货导航 | 2022年Q2
Scala basics [HelloWorld code parsing, variables and identifiers]
PyTorch 1.12发布,正式支持苹果M1芯片GPU加速,修复众多Bug
2020 CCPC Weihai - A. golden spirit (thinking), D. ABC project (big number decomposition / thinking)