loading怎么关闭 vant_vant的Loading加载组件的使用

本文介绍了如何在Vue应用中利用Vuex管理和控制Vant Loading组件的显示与隐藏。通过在store.js中设置state和mutations,然后在axios的请求和响应拦截器中调用相应的mutation,实现请求时显示loading,请求完成或失败时隐藏loading。此外,还展示了在单个请求中手动控制loading的方法。
摘要由CSDN通过智能技术生成

在store.js中使用vuex全局控制loading显示与隐藏

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

}

}

loading组件

在App.vue中,将loading组件挂载到工程根节点

......//其他代码

在封装好的axios中,利用axios的拦截器实现请求时提交store显示loading;

请求失败或者完成提交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')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值