Vuex:以数组作为参数进行分发

时间:2019-05-13 12:11:28

标签: vuex

在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数组。

0 个答案:

没有答案