溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vuex下如何用mutation或action傳參

發(fā)布時間:2022-10-24 14:14:02 來源:億速云 閱讀:128 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了vuex下如何用mutation或action傳參的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇vuex下如何用mutation或action傳參文章都會有所收獲,下面我們一起來看看吧。

前言

在vuex中提交 mutation 是更改狀態(tài)的唯一方法,并且這個過程是同步的,異步邏輯都應(yīng)該封裝到 action 里面。對于mutation/action,有一個常見的操作就是傳參,也就是官網(wǎng)上說的“提交載荷”。

這里是關(guān)于如何在vue-cli中使用vuex的方法,我們采用將vuex設(shè)置分割成不同模塊的方法。其中,state模塊中配置如下

//vuex中的state
const state = {
  count: 0
}

export default state;

mutation傳參

樸實無華的方式

mutation.js

//vuex中的mutation
const mutations = {
  increment: (state,n) => {
    //n是從組件中傳來的參數(shù)
    state.count += n;
  }
}

export default mutations;

vue組件中(省去其他代碼)

methods: {
  add(){
    //傳參
    this.$store.commit('increment',5);
  }
}

對象風(fēng)格提交參數(shù)

mutation.js

//vuex中的mutation
const mutations = {
  decrementa: (state,payload) => {
    state.count -= payload.amount;
  }
}

export default mutations;

vue組件

methods: {
  reducea(){
    //對象風(fēng)格傳參
    this.$store.commit({
      type: 'decrementa',
      amount: 5
    });
  },
}

action傳參

樸實無華

action.js

/vuex中的action
const actions = {
  increment(context,args){
    context.commit('increment',args);
  }
}

export default actions;

mutation.js

//vuex中的mutation
const mutations = {
  increment: (state,n) => {
    state.count += n;
  }
}

export default mutations;

vue組件

methods: {
  adda(){
    //觸發(fā)action
    this.$store.dispatch('increment',5);
  }
}

對象風(fēng)格

action.js

//vuex中的action
const actions = {
  decrementa(context,payload){
    context.commit('decrementa',payload);
  }
}

export default actions;

mutation.js

//vuex中的mutation
const mutations = {
  decrementa: (state,payload) => {
    state.count -= payload.amount;
  }
}

export default mutations;

vue組件

methods: {
  reduceb(){
    this.$store.dispatch({
      type: 'decrementa',
      amount: 5
    });
  }
}

action的異步操作

突然就想總結(jié)一下action的異步操作。。。。

返回promise

action.js

//vuex中的action
const actions = {
  asyncMul(context,payload){
    //返回promise給觸發(fā)的store.dispatch
    return new Promise((resolve,reject) => {
      setTimeout(() => {
        context.commit('multiplication',payload);
        resolve("async over");
      },2000);
    });
  }
}

export default actions;

mutation.js

//vuex中的mutation
const mutations = {
  multiplication(state,payload){
    state.count *= payload.amount;
  }
}

export default mutations;

vue組件

methods: {
  asyncMul(){
    let amount = {
      type: 'asyncMul',
      amount: 5
    }
    this.$store.dispatch(amount).then((result) => {
      console.log(result);
    });
  }
}

在另外一個 action 中組合action

action.js

//vuex中的action
const actions = {
  asyncMul(context,payload){
    //返回promise給觸發(fā)的store.dispatch
    return new Promise((resolve,reject) => {
      setTimeout(() => {
        context.commit('multiplication',payload);
        resolve("async over");
      },2000);
    });
  },
  actiona({dispatch,commit},payload){
    return dispatch('asyncMul',payload).then(() => {
      commit('multiplication',payload);
      return "async over";
    })
  }
}

export default actions;

mutation.js

//vuex中的mutation
const mutations = {
  multiplication(state,payload){
    state.count *= payload.amount;
  }
}

export default mutations;

vue組件

methods: {
  actiona(){
    let amount = {
      type: 'actiona',
      amount: 5
    }
    this.$store.dispatch(amount).then((result) => {
      console.log(result);
    });
  }
}

使用async函數(shù)

action.js

//vuex中的action
const actions = {
  asyncMul(context,payload){
    //返回promise給觸發(fā)的store.dispatch
    return new Promise((resolve,reject) => {
      setTimeout(() => {
        context.commit('multiplication',payload);
        resolve("async over");
      },2000);
    });
  },
  async actionb({dispatch,commit},payload){
    await dispatch('asyncMul',payload);
    commit('multiplication',payload);
  }
}

export default actions;

mutation.js

//vuex中的mutation
const mutations = {
  multiplication(state,payload){
    state.count *= payload.amount;
  }
}

export default mutations;

vue組件

methods: {
  actionb(){
    let amount = {
      type: 'actionb',
      amount: 5
    }
    this.$store.dispatch(amount).then(() => {
      ...
    });
  }
}

關(guān)于“vuex下如何用mutation或action傳參”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“vuex下如何用mutation或action傳參”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI