在 Vue.js 的項(xiàng)目中兽泣,如果項(xiàng)目結(jié)構(gòu)簡(jiǎn)單蹦肴, 父子組件之間的數(shù)據(jù)傳遞可以使用 props 或者 $emit 等方式.
但是如果是大型項(xiàng)目劲够,很多時(shí)候都需要在子組件之間傳遞數(shù)據(jù)职车,使用之前的方式就不太方便。Vue 的狀態(tài)管理工具 [Vuex] 完美的解決了這個(gè)問(wèn)題峦失。
什么是Vuex?
官方說(shuō)法:Vuex 是一個(gè)專為 Vue.js應(yīng)用程序開發(fā)的狀態(tài)管理模式术吗。它采用集中式存儲(chǔ)管理應(yīng)用的所有組件的狀態(tài)尉辑,并以相應(yīng)的規(guī)則保證狀態(tài)以一種可預(yù)測(cè)的方式發(fā)生變化。
個(gè)人理解:Vuex是用來(lái)管理組件之間通信的一個(gè)插件藐翎。
安裝并引入 Vuex
首先材蹬,安裝 Vuex:
npm install vuex
其次在 src
目錄下,我創(chuàng)建了名為 store
的目錄 ( 這是一種選擇吝镣,你也可以在同級(jí)目錄創(chuàng)建一個(gè) store.js
文件 )堤器,再在其中創(chuàng)建一個(gè)名為 index.js
的文件。
index.js
中初始化設(shè)置如下:
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state:{ //聲明數(shù)據(jù)
name:'helloVueX'
},
})
在 main.js
文件中末贾,我們將執(zhí)行以下更新
import Vue from 'vue'
import App from './App'
import store from './store'
new Vue({
el: '#app',
store:store, //store:store 和router一樣闸溃,將我們創(chuàng)建的Vuex實(shí)例掛載到這個(gè)vue實(shí)例中
components: { App },
template: '<App/>'
})
在組件中使用Vuex
例如在App.vue中,我們要將state中定義的name拿來(lái)在h1標(biāo)簽中顯示
<template>
<div id='app'>
name:
<h1>{{ $store.state.name }}</h1>
</div>
</template>
或者要在組件方法中使用
methods:{
add(){
console.log(this.$store.state.name)
}
},
VueX中的核心內(nèi)容
在VueX對(duì)象中拱撵,其實(shí)不止有state,還有用來(lái)操作state中數(shù)據(jù)的方法集辉川,以及當(dāng)我們需要對(duì)state中的數(shù)據(jù)需要加工的方法集等等成員。
state 是存放狀態(tài) 和 Vue 實(shí)例中的 data
遵循相同的規(guī)則
使用如下:
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state:{ //聲明數(shù)據(jù)
str:'',
obj:{},
arr:[],
num:0,
bool:true/false
},
})
getters 是加工state成員給外界 ,可以認(rèn)為是 store 的計(jì)算屬性拴测。getter 的返回值會(huì)根據(jù)它的依賴被緩存起來(lái)乓旗,且只有當(dāng)它的依賴值發(fā)生了改變才會(huì)被重新計(jì)算。
使用方法如下:
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state:{ //聲明數(shù)據(jù)
shopCar:[]
},
getters:{ //可以認(rèn)為是 store 的計(jì)算屬性
shopCarPrices(state){
var sum=0
for(var i=0;i<state.shopCar.length;i++){
sum+=state.shopCar[i]
}
return sum
}
}
})
組件中調(diào)用
this.$store.getters.shopCarPrices
mutations是對(duì) state成員操作 集索, Vuex 的 store 中的狀態(tài)的唯一方法是提交 mutation屿愚。
使用方法如下:
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state:{ //聲明數(shù)據(jù)
name:'helloVueX'
},
mutations:{
amend(state){
state.name = 'jack'
}
}
})
而在組件中汇跨,我們需要這樣去調(diào)用這個(gè)mutation——例如在App.vue的某個(gè)method中:
this.$store.commit('amend')
Mutation傳值
單個(gè)值提交時(shí):
this.$store.commit('amend',15)
多個(gè)提交時(shí):
this.$store.commit('amend',{age:15,sex:'男'})
接收掛載的參數(shù):
amend(state,val){
state.name = 'jack'
console.log(val) // 15或{age:15,sex:'男'}
}
actions 是用來(lái)專門進(jìn)行異步操作,最終提交mutation方法妆距。
由于setTimeout是異步操作穷遂,所以需要使用actions
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state:{
key:''
},
mutations: {
updateKey(state,val){
state.key=val
console.log(state.key);
}
},
actions:{
updateKey(state,val){
setTimeout(()=>{
state.commit('updateKey',val)
},10)
}
}
})
在組件中調(diào)用:
this.$store.dispatch('updateKey',10)
modules 模塊化狀態(tài)管理,每個(gè)模塊擁有自己的 state、mutation娱据、action蚪黑、getter、甚至是嵌套子模塊——從上至下進(jìn)行同樣方式的分割中剩。當(dāng)項(xiàng)目龐大忌穿,狀態(tài)非常多時(shí),可以采用模塊化管理模式结啼。
在創(chuàng)建的store文件夾中在創(chuàng)建一個(gè)a.js文件伴网。
在store中的index.js文件中引入剛創(chuàng)建好的a.js文件
import a from './a'
在index文件中寫入
modules:{
a:a
},
創(chuàng)建好的a.js文件中寫入模塊,可以寫如我們需要的核心對(duì)象妆棒,語(yǔ)法都是一樣的
比如:
export default {
state:{
username :""
},
mutations:{
add(state,val){
state.username = val
},
},
}
組件中傳值
this.$store.commit('add',res)
this.$store.commit('方法名',值)
組件中調(diào)用
this.$store.state.a.username
a代表的是在這個(gè)a模塊里
username 代表的是在a這個(gè)模塊的state中有一個(gè)叫username 的變量
plugins是在vue中使用一些插件 列如可以使用vuex-localstorage
vuex-localstorage 要先進(jìn)行下載 可以使用
npm install vuex-localstorage
cnpm install vuex-localstorage
在index.js
中引入 vuex-localstorage
import createPersist from 'vuex-localstorage'
使用方法如下:
plugins:[
createPersist({namespace:"namespace-for-state"})
],