這篇文章主要為大家詳細介紹了vue2實現數據請求顯示loading圖,具有一定的參考價值,有興趣的小伙伴們可以參考一下
一般項目中,有時候會要求,你在資料請求的時候顯示一張gif圖片,然後資料載入完後,消失。這個,一般只需要在封裝的axios中寫入js事件即可。當然,我們首先需要在app.vue中,加入此圖片。如下:
<template> <p id="app"> <loading v-show="fetchLoading"></loading> <router-view></router-view> </p> </template> <script> import { mapGetters } from 'vuex'; import Loading from './components/common/loading'; export default { name: 'app', data() { return { } }, computed: { ...mapGetters([ 'fetchLoading', ]), }, components: { Loading, } } </script> <style> #app{ width: 100%; height: 100%; } </style>
這裡的fetchLoading是存在vuex裡面的變數。在store/modules/common.js裡需要如下定義:
/* 此js文件用于存储公用的vuex状态 */ import api from './../../fetch/api' import * as types from './../types.js' const state = { // 请求数据时加载状态loading fetchLoading: false } const getters = { // 请求数据时加载状态 fetchLoading: state => state.fetchLoading } const actions = { // 请求数据时状态loading FETCH_LOADING({ commit }, res) { commit(types.FETCH_LOADING, res) }, } const mutations = { // 请求数据时loading [types.FETCH_LOADING] (state, res) { state.fetchLoading = res } }
loading元件如下:
<template> <p class="loading"> <img src="./../../assets/main/running.gif" alt=""> </p> </template> <script> export default { name: 'loading', data () { return {} }, } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> .loading{ position: fixed; top:0; left:0; z-index:121; width: 100%; height: 100%; background: rgba(0,0,0,0.3); display: table-cell; vertical-align: middle; text-align: center; } .loading img{ margin:5rem auto; } </style>
最後在fetch/api.js裡封裝的axios裡寫入判斷loading事件即可:如下
// axios的请求时间 let axiosDate = new Date() export function fetch (url, params) { return new Promise((resolve, reject) => { axios.post(url, params) .then(response => { // 关闭 loading图片消失 let oDate = new Date() let time = oDate.getTime() - axiosDate.getTime() if (time < 500) time = 500 setTimeout(() => { store.dispatch('FETCH_LOADING', false) }, time) resolve(response.data) }) .catch((error) => { // 关闭 loading图片消失 store.dispatch('FETCH_LOADING', false) axiosDate = new Date() reject(error) }) }) } export default { // 组件中公共页面请求函数 commonApi (url, params) { if(stringQuery(window.location.href)) { store.dispatch('FETCH_LOADING', true); } axiosDate = new Date(); return fetch(url, params); } }
這樣就實現了,專案中當載入資料的時候,顯示gif圖片,當資料載入出來時消失。
關於vue.js的學習教學課程,請大家點選專題vue.js元件學習教學、Vue.js前端元件學習教學教學。
更多vue學習教學請閱讀專題《vue實戰教學》
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
以上是在vue2中如何實作資料請求顯示loading圖的詳細內容。更多資訊請關注PHP中文網其他相關文章!