vuex的actions传的第二个参数是undefined?
Posted .Wh9Hj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuex的actions传的第二个参数是undefined?相关的知识,希望对你有一定的参考价值。
this.$store.dispatch(\'fetchRoomLists\', this.$route.params.id, productId)
=》
const info = {id: this.$route.params.id, productId: productId}
this.$store.dispatch(\'fetchRoomLists\', info)
productId 传到 vuex的时候变成了undefind,如果要传多值,组成对象后传
this.$store.commit(xxxx , {aaa: \'aaa\', bbb: \'bbb\'})
const mutations = {
[xxxx] (state, {aaa, bbb}) {
console.log(aaa, bbb)
}
}
以上是关于vuex的actions传的第二个参数是undefined?的主要内容,如果未能解决你的问题,请参考以下文章