为vue项目自动设置请求状态

在进入一个页面的时候,通常在获取数据的同时,会先显示一个 loading,等请求结束再隐藏 loading 渲染页面,只须要用一个属性去记录请求的状态,再根据这个状态去渲染页面就行了html

async handler() {
    this.loading = true
    await fetch()
    this.loading = false
}
复制代码

虽然是很简单的功能,但是要处理的地方多的时候,仍是很繁琐的,就想着能不能统一设置处理请求的 loading,而后页面根据 loading 的状态决定要显示的内容,就根据本身的想法作了一些封装,自动给全部 ajax 请求设置 loading 状态,主要思路是把全部请求集中到单一实例上,经过 proxy 代理属性访问,把 loading 状态提交到 storestatevue

安装

$ npm install vue-ajax-loading
复制代码

演示

在线demo(打开较慢)node

demo截屏

使用

  • 配置 store 的 state 及 mutations
import { loadingState, loadingMutations } from 'vue-ajax-loading'

const store = new Vuex.Store({
    state: {
        ...loadingState
    },
    mutations: {
        ...loadingMutations
    }
})
复制代码
  • 把全部请求集中到一个对象上
import { ajaxLoading } from 'vue-ajax-loading'
import axios from 'axios'
import store from '../store' // Vuex.Store 建立的实例

axios.defaults.baseURL = 'https://cnodejs.org/api/v1'

// 把请求集中到单一对象上,如:
const service = {
    global: {
        // 全局的请求
        getTopics() {
            return axios.get('/topics')
        },
        getTopicById(id = '5433d5e4e737cbe96dcef312') {
            return axios.get(`/topic/${id}`)
        }
    },
    modules: {
        // 有命名空间的请求,命名空间就是 topic
        topic: {
            getTopics() {
                return axios.get('/topics')
            },
            getTopicById(id = '5433d5e4e737cbe96dcef312') {
                return axios.get(`/topic/${id}`)
            }
        }
    }
}

export default ajaxLoading({
    store,
    service
})
复制代码

完成以上配置以后,经过上面 export default 出来的对象去发送请求,就会自动设置请求的状态,而后能够在组件内经过 this.$store.state.loadingthis.$loading 去访问请求状态,如:ios

<el-button type="primary" :loading="$loading.getTopics" @click="handler1">getTopics</el-button>
<el-button type="primary" :loading="$loading.delay" @click="delay">定时两秒</el-button>
<el-button type="primary" :loading="$loading.topic.getTopics" @click="handler3">topic.getTopics</el-button>
复制代码
import api from 'path/to/api'

export default {
    methods: {
        handler1() {
            api.getTopics()
        },
        handler3() {
            api.topic.getTopics()
        },
        delay() {
            api.delay()
        }
    }
}
复制代码

Options

store

Vuex.Store 建立的实例git

service

包含全部请求的对象,能够配置 globalmodules 属性github

  • global:全局做用域的请求,能够设置为对象数组对象
  • modules:带命名空间的请求,类型为对象,属性名即为命名空间

loadingProp

挂载到 Vue.prototype 上的属性名,默认是 $loadingajax

github地址npm