当前位置:   article > 正文

vuex使用store_vue store commit

vue store commit

vuex的官网文档:https://vuex.vuejs.org/zh/installation.html
简单的vuex列子:https://www.cnblogs.com/wisewrong/p/6344390.html

第一步安装:(二选一)

npm install vuex@next --save
  • 1
npm install vuex -S
  • 1

第二步引用:
在main.js中

import store from './store'

new Vue({
  el: '#app',
  router,
  store,
  render: h => h(App)
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

第三步创建存放的js,
在这里插入图片描述
第四步存放需要的字段
1.先将需要的字段在state中定义
2.

import Vue from 'vue'
import Vuex from 'vuex'
import getters from './getters'

Vue.use(Vuex)

const store = new Vuex.Store({
  state:{
    online:new Map()//定义的字段
    // online:{}
  },
  mutations: { //更新状态
    increment (state,online) { //state是上面的state,online为传过来的
      console.log(online)
      var tempMap=new Map()
      online.forEach(element => {
        tempMap.set(element.id,element.online)
      });
      state.online=tempMap //传递到各个页面的是这个
    }
  },
  actions:{},
  modules,
  getters,
})

export default store
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

3.在全局方法中将需要的参数更新到store中的increment 中

 getOnlineList(){
      setInterval(() => {
        this.$axios.get("*******").then((res) => {
        this.$store.commit('increment',res.data)

      });
      }, 50000);
 }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

4.在getter页面中
在这里插入图片描述

5.其他页面接收到实时更新数据
(1)使用getter

   <div>
   {{online1.get('4568789500')}}
   </div> 

  • 1
  • 2
  • 3
  • 4
import { mapGetters } from 'vuex'

  • 1
  • 2
computed:{
    ...mapGetters({
  // 把 `this.doneCount` 映射为 `this.$store.getters.doneTodosCount`
     online1: 'online'
    }),
    
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

(2)直接调用

computed:{
   online1(){
      return this.$store.state.online
   }   
}
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/280125
推荐阅读
相关标签
  

闽ICP备14008679号