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?的主要内容,如果未能解决你的问题,请参考以下文章

CreateProcess 的第二个参数应该是啥?

applyBindings 的第二个参数是做啥用的?

高阶函数的参数传递

为啥 pthread_join() 的第二个参数是一个**,一个指向指针的指针?

如何访问列表中的第二个参数?

[react] react中setState的第二个参数作用是什么呢?