アクション (actions)

  • アクションは、状態を変更するのではなく、ミューテーションをコミットします。
  • アクションは任意の非同期処理を含むことができます。

参考:

アクション | Vuex [公式]

使い方

参考:

Vue.js で状態管理 Vuex の基本を学ぶ | Cubix

構造の複雑さとVuex書き分け – Qiita

ミューテーションのコミット

const store = new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
    increment (state) {
      state.count++
    }
  },
  actions: {
    increment (context) {
      context.commit('increment')
    }
  }
})

非同期処理を含むアクション

actions: {
  incrementAsync ({ commit }) {
    setTimeout(() => {
      commit('increment')
    }, 1000)
  }
}

ディスパッチ

アクションは store.dispatch がトリガーとなって実行されます。

increment をディスパッチする(ペイロードなし)

store.dispatch('increment')

ペイロードを使ってディスパッチする

store.dispatch('incrementAsync', {
  amount: 10
})

オブジェクトを使ってディスパッチする

store.dispatch({
  type: 'incrementAsync',
  amount: 10
})

参考:

アクションのディスパッチ – アクション | Vuex [公式]

引数分割束縛

複数回 commit を呼び出す場合に便利

actions: {
  increment ({ commit }) {
    commit('increment')
  }
}

mapActions

参考:

コンポーネント内でのアクションのディスパッチ – アクション | Vuex [公式]

ミューテーションとアクションの違い

参考:

VuexのMutationとActionの切り分け – Qiita

context の型

参考:

What are the types for { dispatch, commit } in vuex? – Stack Overflow

記事をシェアする:
タグ:

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

Protected by reCAPTCHA