博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多个请求下 loading 的展示与关闭
阅读量:5872 次
发布时间:2019-06-19

本文共 2097 字,大约阅读时间需要 6 分钟。

一般情况下,在 vue 中结合 axios 的拦截器控制 loading 展示和关闭,是这样的:

App.vue 配置一个全局 loading。

复制代码

同时设置 axios 拦截器。

// 添加请求拦截器 this.$axios.interceptors.request.use(config => {     this.isShowLoading = true     return config }, error => {     this.isShowLoading = false     return Promise.reject(error) }) // 添加响应拦截器 this.$axios.interceptors.response.use(response => {     this.isShowLoading = false     return response }, error => {     this.isShowLoading = false     return Promise.reject(error) })复制代码

这个拦截器的功能是在请求前打开 loading,请求结束或出错时关闭 loading。

如果每次只有一个请求,这样运行是没问题的。但同时有多个请求并发,就会有问题了。

举例

假如现在同时发起两个请求,在请求前,拦截器 this.isShowLoading = true 将 loading 打开。

现在有一个请求结束了。this.isShowLoading = false 拦截器关闭 loading,但是另一个请求由于某些原因并没有结束。

造成的后果就是页面请求还没完成,loading 却关闭了,用户会以为页面加载完成了,结果页面不能正常运行,导致用户体验不好。

解决方案

增加一个 loadingCount 变量,用来计算请求的次数。

loadingCount: 0复制代码

再增加两个方法,来对 loadingCount 进行增减操作。

methods: {        addLoading() {            this.isShowLoading = true            this.loadingCount++        },        isCloseLoading() {            this.loadingCount--            if (this.loadingCount == 0) {                this.isShowLoading = false            }        }    }复制代码

现在拦截器变成这样:

// 添加请求拦截器        this.$axios.interceptors.request.use(config => {            this.addLoading()            return config        }, error => {            this.isShowLoading = false            this.loadingCount = 0            this.$Message.error('网络异常,请稍后再试')            return Promise.reject(error)        })        // 添加响应拦截器        this.$axios.interceptors.response.use(response => {            this.isCloseLoading()            return response        }, error => {            this.isShowLoading = false            this.loadingCount = 0            this.$Message.error('网络异常,请稍后再试')            return Promise.reject(error)        })复制代码

这个拦截器的功能是:

每当发起一个请求,打开 loading,同时 loadingCount 加1。

每当一个请求结束, loadingCount 减1,并判断 loadingCount 是否为 0,如果为 0,则关闭 loading。

这样即可解决,多个请求下有某个请求提前结束,导致 loading 关闭的问题。

转载于:https://juejin.im/post/5cfb2dfd6fb9a07ef443f8cb

你可能感兴趣的文章
Linux常用命令笔记2---文件管理2
查看>>
Centos7 连接Serial串口记录
查看>>
tomcat PermGen space 不足的解决方法
查看>>
Outlook disconnected, 2010/2016 Co-Existence issue
查看>>
CentOS7--IP配置与网络问题排查
查看>>
[置顶] Python编程->混合编程(C++,python,opencv)实现
查看>>
Only a type can be imported解决方法
查看>>
Centos VIM 配置
查看>>
《LUA游戏开发实践指南》学习笔记1
查看>>
.htaccess使用说明
查看>>
StateListDrawable 动态更换背景
查看>>
我的友情链接
查看>>
rpm软件包安装
查看>>
JAVA中判断一个字符串是否包含另一个字符串
查看>>
org.eclipse.birt.report.exception.ViewerException: 没有可用的报表设计对象.
查看>>
linux通过mail命令发送到外部邮件
查看>>
BGP的社团属性
查看>>
JS获取服务上下文,兼容上下文为空场景
查看>>
实现简单的字符串队列
查看>>
AF_INET是什么?
查看>>