Vuex狀態(tài)管理(全家桶)

什么是vuex狀態(tài)管理?

就是我們vue里的核心數(shù)據(jù)庫

1. 安裝

$ npm install vuex --save

2. 在main.js 主入口js里面引用store.js

import Vue from 'vue'
import App from './App'
import router from './router' 
import store from './vuex/store'   //引用store.js
Vue.config.productionTip = false  //阻止在啟動時生成生產(chǎn)提示 

//vue實例
new Vue({
  el: '#app',
  router,
  store,                           //把store掛在到vue的實例下面
  template: '<App/>',
  components: { App }
})

3. 在store.js里引用Vuex

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)  //注冊Vuex

// 定義常量    如果訪問他的話,就叫訪問狀態(tài)對象
const state = {
    count: 1
}

// mutations用來改變store狀態(tài),  如果訪問他的話,就叫訪問觸發(fā)狀態(tài)
const mutations = {
    //這里面的方法是用 this.$store.commit('jia') 來觸發(fā)
    jia(state){
        state.count ++
    },
    jian(state){
        state.count --
    },
}
//暴露到外面,讓其他地方的引用
export default new Vuex.Store({
    state,
    mutations
})

4. 在vue組件中使用

使用$store.commit('jia')區(qū)觸發(fā)mutations下面的加減方法

<template>
  <div class="hello">
      <h1>Hello Vuex</h1>
      <h5>{{$store.state.count}}</h5>
      <p>
        <button @click="$store.commit('jia')">+</button>
        <button @click="$store.commit('jian')">-</button>
      </p>
  </div>
</template>

<!-- 加上scoped是css只在這個組件里面生效,為了不影響全局樣式 -->
<style scoped>
    h5{
      font-size: 20px;
      color: red;
    }
</style>

5. 查看演示

QQ20171101-172703-HD.gif

6. state訪問狀態(tài)對象

使用computed計算

<template>
  <div class="hello">
      <h1>Hello Vuex</h1>
      <h5>{{count}}</h5>
      <p>
        <button @click="$store.commit('jia')">+</button>
        <button @click="$store.commit('jian')">-</button>
      </p>
  </div>
</template>

<script>
import {mapState} from 'vuex'
export default{
    name:'hello', //寫上name的作用是,如果你頁面報錯了,他會提示你是那個頁面報的錯,很實用
    // 方法一
    // computed: {
    //   count(){
    //     return this.$store.state.count + 6
    //   }
    // }
    
    // 方法二 需要引入外部 mapState
    computed:mapState({
      count:state => state.count + 10
    })
  
    // ECMA5用法
    // computed:mapState({
    //   count:function(state){
    //     return state.count
    //   }
    // })
    
    //方法三
    // computed: mapState([
    //   'count'
    // ])
  }
</script>

7. mutations觸發(fā)狀態(tài) (同步狀態(tài))

<template>
  <div class="hello">
      <h1>Hello Vuex</h1>
      <h5>{{count}}</h5>
      <p>
        <button @click="jia">+</button>
        <button @click="jian">-</button>
      </p>
  </div>
</template>
<script>
import {mapState,mapMutations} from 'vuex'
  export default{
    name:'hello', //寫上name的作用是,如果你頁面報錯了,他會提示你是那個頁面報的錯,很實用
    //方法三
    computed: mapState([
      'count'
    ]),
    methods:{
      ...mapMutations([
          'jia',
          'jian'
      ])
    }
  }
</script>

8. getters計算屬性

getter不能使用箭頭函數(shù),會改變this的指向

在store.js添加getters

// 計算
const getters = {
    count(state){
        return state.count + 66
    }
}

export default new Vuex.Store({
    state,
    mutations,
    getters
})
//count的參數(shù)就是上面定義的state對象
//getters中定義的方法名稱和組件中使用的時候一定是一致的,定義的是count方法,使用的時候也用count,保持一致。

組件中使用

<script>
  import {mapState,mapMutations,mapGetters} from 'vuex'
  export default{
    name:'hello',
    computed: {
      ...mapState([
        'count'
      ]),
      ...mapGetters([
        'count'
      ])
    },
    methods:{
      ...mapMutations([
          'jia',
          'jian'
      ])
    }
  }
</script>

9. actions (異步狀態(tài))

在store.js添加actions

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)

// 定義常量
const state = {
    count: 1
}

// mutations用來改變store狀態(tài)  同步狀態(tài)
const mutations = {
    jia(state){
        state.count ++
    },
    jian(state){
        state.count --
    },
}
// 計算屬性
const getters = {
    count(state){
        return state.count + 66
    }
}
// 異步狀態(tài)
const actions = {
    jiaplus(context){
        context.commit('jia') //調(diào)用mutations下面的方法
        setTimeout(()=>{
            context.commit('jian')
        },2000)
        alert('我先被執(zhí)行了,然后兩秒后調(diào)用jian的方法')
    },
    jianplus(context){
        context.commit('jian')
    }
}

export default new Vuex.Store({
    state,
    mutations,
    getters,
    actions
})

在組件中使用

<template>
  <div class="hello">
      <h1>Hello Vuex</h1>
      <h5>{{count}}</h5>
      <p>
        <button @click="jia">+</button>
        <button @click="jian">-</button>
      </p>
      <p>
        <button @click="jiaplus">+plus</button>
        <button @click="jianplus">-plus</button>
      </p>
  </div>
</template>
<script>
  import {mapState,mapMutations,mapGetters,mapActions} from 'vuex'
  export default{
    name:'hello',
    computed: {
      ...mapState([
        'count'
      ]),
      ...mapGetters([
        'count'
      ])
    },
    methods:{
      // 這里是數(shù)組的方式觸發(fā)方法
      ...mapMutations([
          'jia',
          'jian'
      ]),
      // 換一中方式觸發(fā)方法 用對象的方式
      ...mapActions({
        jiaplus: 'jiaplus',
        jianplus: 'jianplus'
      })
    }
  }
</script>

<style scoped>
    h5{
      font-size: 20px;
      color: red;
    }
</style>

10. modules 模塊

適用于非常大的項目,且狀態(tài)很多的情況下使用,便于管理

修改store.js

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)

const state = {
    count: 1
}
const mutations = {
    jia(state){
        state.count ++
    },
    jian(state){
        state.count --
    },
}
const getters = {
    count(state){
        return state.count + 66
    }
}
const actions = {
    jiaplus(context){
        context.commit('jia') //調(diào)用mutations下面的方法
        setTimeout(()=>{
            context.commit('jian')
        },2000)
        alert('我先被執(zhí)行了,然后兩秒后調(diào)用jian的方法')
    },
    jianplus(context){
        context.commit('jian')
    }
}

//module使用模塊組的方式  moduleA
const moduleA = {
    state,
    mutations,
    getters,
    actions
}

// 模塊B moduleB
const moduleB = {
    state: {
        count:108
    }
}

export default new Vuex.Store({
    modules: {
        a: moduleA,
        b: moduleB,
    }
})
image.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • Vuex是什么? Vuex 是一個專為 Vue.js應(yīng)用程序開發(fā)的狀態(tài)管理模式。它采用集中式存儲管理應(yīng)用的所有組件...
    蕭玄辭閱讀 3,242評論 0 6
  • vuex 場景重現(xiàn):一個用戶在注冊頁面注冊了手機(jī)號碼,跳轉(zhuǎn)到登錄頁面也想拿到這個手機(jī)號碼,你可以通過vue的組件化...
    sunny519111閱讀 8,168評論 4 111
  • 安裝 npm npm install vuex --save 在一個模塊化的打包系統(tǒng)中,您必須顯式地通過Vue.u...
    蕭玄辭閱讀 3,053評論 0 7
  • vuex是什么鬼? 如果你用過redux就能很快的理解vuex是個什么鬼東西了。他是vuejs用來管理狀態(tài)的插件。...
    麥子_FE閱讀 7,019評論 3 37
  • Vuex 是一個專為 Vue.js 應(yīng)用程序開發(fā)的狀態(tài)管理模式。它采用集中式存儲管理應(yīng)用的所有組件的狀態(tài),并以相應(yīng)...
    白水螺絲閱讀 4,809評論 7 61

友情鏈接更多精彩內(nèi)容