javascript - 使用Vuex中的 mapMutations 辅助函数时怎么传递参数(Payload)
天蓬老师
天蓬老师 2017-04-11 12:44:43
[JavaScript讨论组]

用this.$store.commit('xxx',obj)时可以传递一个obj,那么用mapMutations()时怎么传递一个额外的参数。
并没有在官方文档上找到方法,难道mapMutations里面只能放没有传递额外参数的方法吗?
按道理讲不应该啊,既然提供了简便的方法好歹服务到位吧。

**使用 this.$store.commit()时** 两种格式都能提交附加的数据

方法一:
store.commit('increment', {
  amount: 10
})

方法二:
store.commit({
  type: 'increment',
  amount: 10
})



**使用mapMutations()时** 就没发现有提交的位置

import { mapMutations } from 'vuex'

export default {
  // ...
  methods: {
    ...mapMutations([
      'increment' // 映射 this.increment() 为 this.$store.commit('increment')
    ]),
    ...mapMutations({
      add: 'increment' // 映射 this.add() 为 this.$store.commit('increment')
    })
  }
}
天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

全部回复(1)
阿神

this.increment({ amount: 10 })this.add({ amount: 10 })

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号