首页 > 其他 > 详细

自动刷新实现,vuex状态绑定

时间:2021-04-08 20:56:50      阅读:34      评论:0      收藏:0      [点我收藏+]

js 每5分钟刷新一次
通过el-switch 来控制是否启用自动更新
el-switch 通过 v-model 来绑定 store中的状态

computed: {
    autoRefresh: {
      get() {
        return this.$store.state.dmx.mvAutoRefresh
      },
      set(value) {
        this.$store.dispatch(‘dmx/setAutoRefresh‘, value)
      }
    },
    dmxTimer() {
      return this.$store.state.dmx.dmxTimer
    }
}

切换至其他页面时,清除自动刷新,进入时 再根据 autoRefresh 来判断是否加上定时刷新

  beforeDestroy() {
    clearInterval(this.dmxTimer)
    this.$store.dispatch(‘dmx/clearDmxTimer‘)
  },
  mounted() {
    this.autoRefreshHandler()
  },
  methods: {
    dmxtest() {
      console.log((new Date()) + ‘----‘)
    },
    autoRefreshHandler() {
      /** 定时器  **/
      if (this.autoRefresh) {
        if (this.dmxTimer == null) {
          const tmpDmxTimer = setInterval(this.dmxtest, this.dmxTimeout)
          this.$store.dispatch(‘dmx/setDmxTimer‘, tmpDmxTimer)
        }
      } else {
        if (this.dmxTimer != null) {
          clearInterval(this.dmxTimer)
          this.$store.dispatch(‘dmx/clearDmxTimer‘)
        }
      }
    }
}

dmx.js

// import Cookies from ‘js-cookie‘

const state = {
  // 首页是否自动刷新
  mvAutoRefresh: true,
  message: ‘xxx‘,
  dmxTimer: null
}

const mutations = {
  setAutoRefresh: (state, val) => {
    state.mvAutoRefresh = val
  },
  updateMessage: (state, val) => {
    state.message = val
  },
  clearDmxTimer: (state) => {
    state.dmxTimer = null
  },
  setDmxTimer: (state, val) => {
    state.dmxTimer = val
  }
}

const actions = {
  setAutoRefresh: (context, val) => {
    context.commit(‘setAutoRefresh‘, val)
  },
  clearDmxTimer: (context) => {
    context.commit(‘clearDmxTimer‘)
  },
  setDmxTimer: (context, val) => {
    context.commit(‘setDmxTimer‘, val)
  }
}

export default {
  namespaced: true,
  state,
  mutations,
  actions
}

自动刷新实现,vuex状态绑定

原文:https://www.cnblogs.com/dmx-x/p/14633870.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!