Vuex基本使用的總結
使用
在 Vue 的單頁面應用中使用,需要使用Vue.use(Vuex)
呼叫外掛。
使用非常簡單,只需要將其注入到Vue根例項中。
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({
state: {
count: 0
},
getter: {
doneTodos: (state, getters) => {
return state.todos.filter(todo => todo.done)
}
},
mutations: {
increment (state, payload) {
state.count++
}
},
actions: {
addCount(context) {
// 可以包含非同步操作
// context 是一個與 store 例項具有相同方法和屬性的 context 物件
}
}
})
// 注入到根例項
new Vue({
el: '#app',
store,
template: '<App/>',
components: { App }
})
然後改變狀態:
this.$store.commit('increment')
Vuex 主要有四部分:
- state:包含了
store
中儲存的各個狀態。 - getter: 類似於 Vue 中的計算屬性,根據其他 getter 或 state 計算返回值。
- mutation: 一組方法,是改變
store
中狀態的執行者。 - action: 一組方法,其中可以含有非同步操作。
state
Vuex 使用 state
來儲存應用中需要共享的狀態。為了能讓 Vue 元件在 state
更改後也隨著更改,需要基於state
建立計算屬性。
const Counter = {
template: `<div>{{ count }}</div>`,
computed: {
count () {
return this.$store.state.count // count 為某個狀態
}
}
}
getters
類似於 Vue 中的 計算屬性,可以在所以來的其他 state
或者 getter
改變後自動改變。
每個getter
方法接受 state
和其他getters
作為前兩個引數。
getters: {
doneTodos: (state, getters) => {
return state.todos.filter(todo => todo.done)
}
}
mutations
前面兩個都是狀態值本身,mutations
才是改變狀態的執行者。mutations
用於同步地更改狀態
// ...
mutations: {
increment (state, n) {
state.count += n
}
}
其中,第一個引數是state
,後面的其他引數是發起mutation
時傳入的引數。
this.$store.commit('increment', 10)
commit
方法的第一個引數是要發起的mutation
名稱,後面的引數均當做額外資料傳入mutation
定義的方法中。
規範的發起mutation
的方式如下:
store.commit({
type: 'increment',
amount: 10 //這是額外的引數
})
額外的引數會封裝進一個物件,作為第二個引數傳入mutation
定義的方法中。
mutations: {
increment (state, payload) {
state.count += payload.amount
}
}
actions
想要非同步地更改狀態,需要使用action
。action
並不直接改變state
,而是發起mutation
。
actions: {
incrementAsync ({ commit }) {
setTimeout(() => {
commit('increment')
}, 1000)
}
}
發起action
的方法形式和發起mutation
一樣,只是換了個名字dispatch
。
// 以物件形式分發
store.dispatch({
type: 'incrementAsync',
amount: 10
})
action處理非同步的正確使用方式
想要使用action
處理非同步工作很簡單,只需要將非同步操作放到action
中執行(如上面程式碼中的setTimeout
)。
要想在非同步操作完成後繼續進行相應的流程操作,有兩種方式:
-
action
返回一個promise
。
而dispatch
方法的本質也就是返回相應的action
的執行結果。所以dispatch
也返回一個promise
。
store.dispatch('actionA').then(() => {
// ...
})
- 利用
async/await
。程式碼更加簡潔。
// 假設 getData() 和 getOtherData() 返回的是 Promise
actions: {
async actionA ({ commit }) {
commit('gotData', await getData())
},
async actionB ({ dispatch, commit }) {
await dispatch('actionA') // 等待 actionA 完成
commit('gotOtherData', await getOtherData())
}
}
各個功能與 Vue 元件結合
將state
和getter
結合進元件需要使用計算屬性:
computed: {
count () {
return this.$store.state.count
// 或者 return this.$store.getter.count2
}
}
將mutation
和action
結合進元件需要在methods
中呼叫this.$store.commit()
或者this.$store.commit()
:
methods: {
changeDate () {
this.$store.commit('change');
},
changeDateAsync () {
this.$store.commit('changeAsync');
}
}
為了簡便起見,Vuex 提供了四個方法用來方便的將這些功能結合進元件。
mapState
mapGetters
mapMutations
mapActions
示例程式碼:
import { mapState, mapGetters, mapMutations, mapActions } from 'vuex'
// ....
computed: {
localComputed () { /* ... */ },
...mapState({
// 為了能夠使用 `this` 獲取區域性狀態,必須使用常規函式
count(state) {
return state.count + this.localCount
}
}),
...mapGetters({
getterCount(state, getters) {
return state.count + this.localCount
}
})
}
methods: {
...mapMutations({
add: 'increment' // 將 `this.add()` 對映為`this.$store.commit('increment')`
}),
...mapActions({
add: 'increment' // 將 `this.add()` 對映為 `this.$store.dispatch('increment')`
})
}
如果結合進元件之後不想改變名字,可以直接使用陣列的方式。
methods: {
...mapActions([
'increment', // 將 `this.increment()` 對映為 `this.$store.dispatch('increment')`
// `mapActions` 也支援載荷:
'incrementBy' // 將 `this.incrementBy(amount)` 對映為 `this.$store.dispatch('incrementBy', amount)`
]),
}
將 store
分割為模組。
可以將應用的store
分割為小模組,每個模組也都擁有所有的東西:state
, getters
, mutations
, actions
。
首先建立子模組的檔案:
// initial state
const state = {
added: [],
checkoutStatus: null
}
// getters
const getters = {
checkoutStatus: state => state.checkoutStatus
}
// actions
const actions = {
checkout ({ commit, state }, products) {
}
}
// mutations
const mutations = {
mutation1 (state, { id }) {
}
}
export default {
state,
getters,
actions,
mutations
}
然後在總模組中引入:
import Vuex from 'vuex'
import products from './modules/products' //引入子模組
Vue.use(Vuex)
export default new Vuex.Store({
modules: {
products // 新增進模組中
}
})
其實還存在名稱空間的概念,大型應用會使用。需要時檢視文件即可。Vuex的基本使用大致如此。
相關文章
- Vuex使用總結Vue
- Vuex的基本使用Vue
- vuex總結Vue
- vuex簡單總結Vue
- vuex 基本入門和使用(二)Vue
- Vuex與Busemit結合使用淺談Vuex使用方式VueMIT
- css基本語法總結及使用CSS
- Android的Paint、Canvas和Path基本使用總結AndroidAICanvas
- vuex 基本入門和使用(三)-關於 mutationVue
- activemq的兩種基本通訊方式的使用及總結MQ
- Git使用總結(一):簡介與基本操作Git
- Quartz:基本用法總結quartz
- Mysql基本操作總結MySql
- FutureTask基本操作總結
- vuex 原始碼:原始碼系列解讀總結Vue原始碼
- oracle基本命令總結Oracle
- JavaScript基本型別總結JavaScript型別
- 機器學習基本概念總結機器學習
- 【Less】Less基本用法總結
- MySQL基本命令總結MySql
- Oracle基本檢視總結Oracle
- vue 元件通訊總結 (非vuex和Event Bus)Vue元件
- 深入SQLite基本操作的總結詳解SQLite
- 關於git的基本核心操作總結Git
- MySQL基本sql語句總結MySql
- ActiveMQ基本詳解與總結MQ
- SQL總結(一)基本查詢SQL
- Vuex之結構Vue
- GCC使用基本方法彙總GC
- Flink的DataSet基本運算元總結
- 總結訊息佇列RabbitMQ的基本用法佇列MQ
- ListenalbeFuture的使用總結
- git的使用總結Git
- WebView的使用總結WebView
- JXCategoryView的使用總結GoView
- cmake的使用總結
- vuex使用理解Vue
- Vuex使用分享Vue