vuex
数据驱动模板(管理共享状态) 核心store仓库(响应式的状态存储) 提交mutation才能修改内部状态 记录每次改变保存状态快照
1 | const store = new Vuex.Store({ |
不要在发布环境下启用严格模式!严格模式会深度监测状态树来检测不合规的状态变更——请确保在发布环境下关闭严格模式,以避免性能损失。
state(单一状态树)
用一个对象包含所有的应用层级状态
- 从store实例中读取状态
1
2
3
4
5
6
7
8
9// 计算属性
const Counter = {
template: `<div>{{ count }}</div>`,
computed: {
count () {
return store.state.count
}
}
} 从根组件注入实例
1
2
3
4
5
6
7
8
9
10
11
12
13const app = new Vue({
el: '#app',
// 把 store 对象提供给 “store” 选项,这可以把 store 的实例注入所有的子组件
store,
components: { Counter },
template: `
<div class="app">
<counter></counter>
</div>
`
})
// 读取
this.$store.state.count多个属性使用mapState()辅助函数
1
2
3
4
5
6
7computed: mapState({
count: state => state.count,
name: state=> state.name
})
// 如果属性与state子节点名称相同 传入字符串数组
// 映射 this.count 为 store.state.count
mapState(['count'])
getter对state数据的派生操作(共享数据的共享函数)
1 | const store = new Vuex.Store({ |
- mapGetters()辅助函数
1
2
3
4
5
6
7
8
9
10
11
12computed: {
// 使用对象展开运算符将 getter 混入 computed 对象中
...mapGetters([
'doneTodosCount',
'anotherGetter',
// ...
])
}
mapGetters({
// 把 `this.doneCount` 映射为 `this.$store.getters.doneTodosCount`
doneCount: 'doneTodosCount'
})
mutation
提交mutation
1
2
3
4
5
6
7
8
9
10
11
12store.commit("increase")
// 传参
store.commit('increase', 10)
// 最好还是规范传payload对象
store.commit('increase', {
amount:10
})
// 对象风格提交
store.commit({
type: 'increase',
amount: 10
})
2.当需要在对象上添加新属性时,你应该
•使用 Vue.set(obj, ‘newProp’, 123), 或者
•以新对象替换老对象。
1
state.obj = { ...state.obj, newProp: 123 }
- 常量替代事件类型
1
2// mutation-types.js
export const SOME_MUTATION = 'SOME_MUTATION'1
2
3
4
5
6
7
8
9
10
11
12
13// store.js
import Vuex from 'vuex'
import { SOME_MUTATION } from './mutation-types'
const store = new Vuex.Store({
state: { ... },
mutations: {
// 我们可以使用 ES2015 风格的计算属性命名功能来使用一个常量作为函数名
[SOME_MUTATION] (state) {
// mutate state
}
}
})
mutation必须是同步函数 一条 mutation 被记录,devtools 都需要捕捉到前一状态和后一状态的快照。devtools 不知道什么时候回调函数实际上被调用——实质上任何在回调函数中进行的状态的改变都是不可追踪的。
组件中提交mutation
1
this.$store.commit('xxx')
mapMutations 辅助函数
1
2
3
4
5
6
7
8
9
10
11methods: {
...mapMutations([
'increase', // 将 `this.increase()` 映射为 `this.$store.commit('increase')`
// `mapMutations` 也支持载荷:
'increaseBy' // 将 `this.increaseBy(amount)` 映射为 `this.$store.commit('increaseBy', amount)`
]),
...mapMutations({
add: 'increase' // 将 `this.add()` 映射为 `this.$store.commit('increase')`
})
}
action
1 | store.commit('increment') |
Action 类似于 mutation,不同在于: •Action 提交的是 mutation,而不是直接变更状态。 •Action 可以包含任意异步操作。
1 | const store = new Vuex.Store({ |
Action 函数接受一个与 store 实例具有相同方法和属性的 context 对象,因此你可以调用 context.commit 提交一个 mutation,或者通过 context.state 和 context.getters 来获取 state 和 getters。
- 触发action
1
store.dispatch('increase')
- 支持同样的载荷方式和对象方式分发
1
2
3
4
5
6
7
8
9
10// 以载荷形式分发
store.dispatch('increaseAsync', {
amount: 10
})
// 以对象形式分发
store.dispatch({
type: 'increaseAsync',
amount: 10
})
1 | // 购物车操作实例 |
组件中分发action
在组件中使用 this.$store.dispatch(‘xxx’) 分发 action,或者使用 mapActions 辅助函数将组件的 methods 映射为 store.dispatch 调用(需要先在根节点注入 store)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16import { mapActions } from 'vuex'
export default {
// ...
methods: {
...mapActions([
'increase', // 将 `this.increase()` 映射为 `this.$store.dispatch('increase')`
// `mapActions` 也支持载荷:
'increaseBy' // 将 `this.increaseBy(amount)` 映射为 `this.$store.dispatch('increaseBy', amount)`
]),
...mapActions({
add: 'increase' // 将 `this.add()` 映射为 `this.$store.dispatch('increase')`
})
}
}
action组合嵌套
store.dispatch 可以处理被触发的 action 的处理函数返回的 Promise,并且 store.dispatch 仍旧返回 Promise
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19actions: {
actionA ({ commit }) {
return new Promise((resolve, reject) => {
setTimeout(() => {
commit('someMutation')
resolve()
}, 1000)
})
},
actionB ({ dispatch, commit }) {
return dispatch('actionA').then(() => {
commit('someOtherMutation')
})
}
}
store.dispatch('actionA').then(() => {
// ...
})
采用async await
1 | // getData() 和 getOtherData() 返回的是 Promise |
module切分模块
1 | const moduleA = { |
模块内部的action
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15const moduleA = {
// ...
actions: {
incrementIfOddOnRootSum ({ state, commit, rootState }) {
if ((state.count + rootState.count) % 2 === 1) {
commit('increment')
}
}
},
getters: {
sumWithRootCount (state, getters, rootState) {
return state.count + rootState.count
}
}
}命名空间
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
28
29
30
31
32
33
34
35
36
37
38
39
40const store = new Vuex.Store({
modules: {
account: {
namespaced: true,
// 模块内容(module assets)
state: { ... }, // 模块内的状态已经是嵌套的了,使用 `namespaced` 属性不会对其产生影响
getters: {
isAdmin () { ... } // -> getters['account/isAdmin']
},
actions: {
login () { ... } // -> dispatch('account/login')
},
mutations: {
login () { ... } // -> commit('account/login')
},
// 嵌套模块
modules: {
// 继承父模块的命名空间
myPage: {
state: { ... },
getters: {
profile () { ... } // -> getters['account/profile']
}
},
// 进一步嵌套命名空间
posts: {
namespaced: true,
state: { ... },
getters: {
popular () { ... } // -> getters['account/posts/popular']
}
}
}
}
}
})在带命名空间的模块内访问全局内容(Global Assets)
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
28
29
30
31modules: {
foo: {
namespaced: true,
getters: {
// 在这个模块的 getter 中,`getters` 被局部化了
// 你可以使用 getter 的第四个参数来调用 `rootGetters`
someGetter (state, getters, rootState, rootGetters) {
getters.someOtherGetter // -> 'foo/someOtherGetter'
rootGetters.someOtherGetter // -> 'someOtherGetter'
},
someOtherGetter: state => { ... }
},
actions: {
// 在这个模块中, dispatch 和 commit 也被局部化了
// 他们可以接受 `root` 属性以访问根 dispatch 或 commit
someAction ({ dispatch, commit, getters, rootGetters }) {
getters.someGetter // -> 'foo/someGetter'
rootGetters.someGetter // -> 'someGetter'
dispatch('someOtherAction') // -> 'foo/someOtherAction'
dispatch('someOtherAction', null, { root: true }) // -> 'someOtherAction'
commit('someMutation') // -> 'foo/someMutation'
commit('someMutation', null, { root: true }) // -> 'someMutation'
},
someOtherAction (ctx, payload) { ... }
}
}
}在带命名空间的模块注册全局 action 若需要在带命名空间的模块注册全局 action,可添加 root: true,并将这个 action 的定义放在函数 handler 中。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19{
actions: {
someOtherAction ({dispatch}) {
dispatch('someAction')
}
},
modules: {
foo: {
namespaced: true,
actions: {
someAction: {
root: true,
handler (namespacedContext, payload) { ... } // -> 'someAction'
}
}
}
}
}带命名空间的绑定函数
1
2
3
4
5
6
7
8
9
10
11
12computed: {
...mapState({
a: state => state.some.nested.module.a,
b: state => state.some.nested.module.b
})
},
methods: {
...mapActions([
'some/nested/module/foo', // -> this['some/nested/module/foo']()
'some/nested/module/bar' // -> this['some/nested/module/bar']()
])
}
简化
1
2
3
4
5
6
7
8
9
10
11
12computed: {
...mapState('some/nested/module', {
a: state => state.a,
b: state => state.b
})
},
methods: {
...mapActions('some/nested/module', [
'foo', // -> this.foo()
'bar' // -> this.bar()
])
}
也可以通过使用 createNamespacedHelpers 创建基于某个命名空间辅助函数。它返回一个对象,对象里有新的绑定在给定命名空间值上的组件绑定辅助函数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20import { createNamespacedHelpers } from 'vuex'
const { mapState, mapActions } = createNamespacedHelpers('some/nested/module')
export default {
computed: {
// 在 `some/nested/module` 中查找
...mapState({
a: state => state.a,
b: state => state.b
})
},
methods: {
// 在 `some/nested/module` 中查找
...mapActions([
'foo',
'bar'
])
}
}
定义插件
1 | const myPlugin = store => { |
表单处理
因为提交mutation才能修改状态,所以v-model不适合绑定vuex里的state,不符合vuex的思想。
1
<input v-model="obj.message">
不采用v-model 所以需要input绑定value,然后调用input或者change提交mutation修改状态
1
<input :value="message" @input="updateMessage">
1
2
3
4
5
6
7
8
9
10computed: {
...mapState({
message: state => state.obj.message
})
},
method: {
updateMessage(e){
this.$store.commit("updateMessage", e.target.value)
}
}采用v-model
1
2
3
4
5
6
7
8
9
10
11// ...
computed: {
message: {
get () {
return this.$store.state.obj.message
},
set (value) {
this.$store.commit('updateMessage', value)
}
}
}