在vuex中的调度方法的有效载荷中是否可以有一个数组?
下面,我有一个table
名称字符串和一个id
数字,但是有效负载中的path
数组为我提供了数组长度。
this.$store.dispatch('DESTROY_ENTRY', { table, id, path }).then(response => {
console.log(response)
}, error => {
console.log(error)
})
===
在NikosM发表评论后,我意识到,如果我设置了以下内容:
this.$store.dispatch('DESTROY_ENTRY', { table, id, path2: { 'a':'foo', 'b':'bar' } })
我为此得到path
:
path2: {a: "foo", b: "bar"}
但是它不接受我的path
数组。