Vuex Actions


action 和 mutation 类似,区别在于:

  • action 不改变状态,只提交(commit) mutation。
  • action 可以包含任意异步操作。

让我们注册一个简单的 action:

  1. const store = new Vuex.Store({
  2. state: {
  3. count: 0
  4. },
  5. mutations: {
  6. increment (state) {
  7. state.count++
  8. }
  9. },
  10. actions: {
  11. increment (context) {
  12. context.commit('increment')
  13. }
  14. }
  15. })

Action 处理函数接收一个上下文对象(context object),该对象提供了跟 store 实例相同的方法/属性,因此你可以调用 context.commit 提交一个 mutation,或者通过 context.statecontext.getters 访问 state 和 getters。稍后我们会介绍 Modules,我们将看到为什么上下文对象 (context object) 不是 store 实例自身。

在实践中,我们经常用到 ES2015 参数解构 来简化代码(特别是我们要多次调用 commit 的时候):

  1. actions: {
  2. increment ({ commit }) {
  3. commit('increment')
  4. }
  5. }

分发(Dispatch) Action

使用 store.dispatch 方法触发 action。

  1. store.dispatch('increment')

这看起来很蠢:如果我们想增加 count,为什么我们不直接调用 store.commit('increment')?回想起mutation 必须是同步函数 了吗?action 可以不是同步函数。我们可以在 action 回调函数中执行 异步操作

  1. actions: {
  2. incrementAsync ({ commit }) {
  3. setTimeout(() => {
  4. commit('increment')
  5. }, 1000)
  6. }
  7. }

action 同样支持 payload 格式和对象风格的 dispatch:

  1. // dispatch 传入 payload
  2. store.dispatch('incrementAsync', {
  3. amount: 10
  4. })
  5. // dispatch 传入一个对象
  6. store.dispatch({
  7. type: 'incrementAsync',
  8. amount: 10
  9. })

日常生活行为中,更实际的例子是购物车结帐,涉及调用异步 API分发多重 mutations

  1. actions: {
  2. checkout ({ commit, state }, payload) {
  3. // 把当前购物车的商品备份起来
  4. const savedCartItems = [...state.cart.added]
  5. // 发送结帐请求,并愉快地清空购物车
  6. commit(types.CHECKOUT_REQUEST)
  7. // 购物 API 接收一个成功回调和一个失败回调
  8. shop.buyProducts(
  9. products,
  10. // 成功操作
  11. () => commit(types.CHECKOUT_SUCCESS),
  12. // 失败操作
  13. () => commit(types.CHECKOUT_FAILURE, savedCartItems)
  14. )
  15. }
  16. }

注意,我们执行的是一个异步操作的流程,并通过提交 action 来记录其副作用(状态变化)。

组件中分发 Action

使用 this.$store.dispatch('xxx')(需要根组件中注入 store )在组件中分发 action,使用 mapActions 工具函数,映射组件方法到调用 store.dispatch

  1. import { mapActions } from 'vuex'
  2. export default {
  3. // ...
  4. methods: {
  5. ...mapActions([
  6. 'increment' // 映射 this.increment() 到 this.$store.dispatch('increment')
  7. ]),
  8. ...mapActions({
  9. add: 'increment' // map this.add() to this.$store.dispatch('increment')
  10. })
  11. }
  12. }

组合多个 Action

Action 通常是异步的,所以我们如何知道一个 action 何时完成?更重要的是,我们如何组合多个 action 一起操作复杂的异步流程?

第一件事是知道 store.dispatch 返回『action 回调函数被触发后的返回值』,所以你可以在 action 中返回一个 Promise 对象。

  1. actions: {
  2. actionA ({ commit }) {
  3. return new Promise((resolve, reject) => {
  4. setTimeout(() => {
  5. commit('someMutation')
  6. resolve()
  7. }, 1000)
  8. })
  9. }
  10. }

现在你可以这么做:

  1. store.dispatch('actionA').then(() => {
  2. // ...
  3. })

然后在另一个 action :

  1. actions: {
  2. // ...
  3. actionB ({ dispatch, commit }) {
  4. return dispatch('actionA').then(() => {
  5. commit('someOtherMutation')
  6. })
  7. }
  8. }

最后,如果我们使用 async / await,很快落地的 JavaScript 特性,我们可以这样组合我们的 action:

  1. // 假定 getData() and getOtherData() 返回的是 Promise
  2. actions: {
  3. async actionA ({ commit }) {
  4. commit('gotData', await getData())
  5. },
  6. async actionB ({ dispatch, commit }) {
  7. await dispatch('actionA') // 等待 actionA 结束
  8. commit('gotOtherData', await getOtherData())
  9. }
  10. }

store.dispatch 可能会在不同模块中,触发多个 action 回调函数。在这种情况下,返回值是一个 Promise 对象,该对象在所有被触发的回调都 resolve 之后自己再 resolve。