亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

vuex下如何用mutation或action傳參

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

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

前言

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

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

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

export default state;

mutation傳參

樸實無華的方式

mutation.js

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

export default mutations;

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

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

對象風格提交參數

mutation.js

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

export default mutations;

vue組件

methods: {
  reducea(){
    //對象風格傳參
    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(){
    //觸發action
    this.$store.dispatch('increment',5);
  }
}

對象風格

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的異步操作

突然就想總結一下action的異步操作。。。。

返回promise

action.js

//vuex中的action
const actions = {
  asyncMul(context,payload){
    //返回promise給觸發的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給觸發的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函數

action.js

//vuex中的action
const actions = {
  asyncMul(context,payload){
    //返回promise給觸發的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(() => {
      ...
    });
  }
}

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南华县| 邳州市| 宁远县| 四会市| 耒阳市| 新乡县| 晋城| 麦盖提县| 丰原市| 临邑县| 延吉市| 玉环县| 兴义市| 察哈| 永安市| 礼泉县| 安达市| 确山县| 广元市| 鹿泉市| 巴林右旗| 邹城市| 涪陵区| 广河县| 呼图壁县| 绍兴市| 友谊县| 林口县| 山西省| 油尖旺区| 房山区| 庄浪县| 南华县| 驻马店市| 临安市| 漳州市| 托克逊县| 绥江县| 祁门县| 霞浦县| 曲松县|