import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
LOADING: false
},
mutations: {
showLoading(state) {
state.LOADING = true
},
hideLoading(state) {
state.LOADING = false
}
}
<template>
<div class="loading">
<van-loading type="spinner" color="#1989fa" />
</div>
</template>
<script>
import Vue from 'vue';
import {Loading} from 'vant';
Vue.use(Loading);
export default {
name: 'LOADING',
data() {
return {}
},
}
</script>
<style lang="scss" scoped>
.loading {
position: fixed;
z-index: 9999;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.5);
display: flex;
justify-content: center;
align-items: center;
}
</style>
挂载到App.vue中之后所有的接口请求都会加载loading组件
<template>
<div id="app">
<Loading v-show="LOADING"></Loading>
......//其他代码
</div>
</template>
<script>
import {mapState} from 'vuex'
import Loading from '@c/Loading.vue'
export default {
// ...解构,将store中的state进行映射。
// 在template中可以直接使用,不需要通过this.$store.state一个个获取store中的state数据。
computed: {
...mapState(['LOADING'])
},
name: 'App',
components: {Loading}
}
</script>
在封装好的axios中,利用axios的拦截器实现请求时提交store显示loading;
import Vue from "vue";
import axios from 'axios';
import store from '../../store';
// 请求拦截器
axios.interceptors.request.use(function (config) {
store.commit('showLoading')
return config;
}, function (error) {
store.commit('hideLoading')
return Promise.reject(error);
});
//响应拦截器
axios.interceptors.response.use((response) => {
store.commit('hideLoading')
return response.data;
}, (error) => {
store.commit('hideLoading')
return Promise.reject(error);
});
//绑定到vue原型中
Vue.prototype.$http = axios;
-
如果在单个请求中使用
// 在请求时
this.$store.commit('showLoading')
//请求完成后
this.$store.commit('hideLoading')
原文地址:https://blog.csdn.net/m0_61663332/article/details/128610258
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_14177.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。