Vuex 使用actions中的方法(包括module中的actions)

1.直接store中dispatch
export default {
  methods: {
    clickFn() {
      this.$store.dispatch("sampleFn") //不带参
      this.$store.dispatch("withParamFn",param) //带参,param为参数
    }
  }
};
2.使用mapActions取值
import { mapActions } from "vuex";

export default {
  methods: {
    ...mapActions([
      "sampleFn", // 将 `this.sampleFn()` 映射为 `this.$store.dispatch('sampleFn')`
      "withParamFn" // 将`this.withParamFn(param)`映射为`this.$store.dispatch('withParamFn', param)`
    ]),
    ...mapActions({
      newFn: "sampleFn" // 将`this.newFn()`映射为`this.$store.dispatch('sampleFn')`
    }),
  }
 }
3.使用module中的actions

module中的actions,又分为namespaced(命名空间)truefalse的情况。默认为false,则表示方位都是全局注册,与上边两种方法一致。当为true时,则使用如下方法:

import { mapState, mapActions } from "vuex";

export default {
  methods: {
    ...mapActions([
      "moduleA/sampleFn" // -> this['moduleA/sampleFn']()
    ]),
    ...mapActions("moduleA", [
      "sampleFn" // -> this.sampleFn()
    ]),
    clickFn() {
      this.$store.dispatch("moduleA/sampleFn"); // 直接从store中dispatch
    }
  }
};

// 使用createNamespacedHelpers函数
import { createNamespacedHelpers } from "vuex";
const { mapActions } = createNamespacedHelpers("moduleA");

export default {
  methods: {
    ...mapActions([
      "sampleFn" // -> this.sampleFn()
    ])
  }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值