gpt4 book ai didi

javascript - 我可以在 Vue 实例方法内部传播的 mapMutations 中使用 "this"吗?

转载 作者:可可西里 更新时间:2023-11-01 02:24:43 26 4
gpt4 key购买 nike

我想按如下方式设置 Vuex 突变:

export default {
props: {
store: String
},
methods: {
...mapMutations({
changeModel: `${this.store}/changeModel`
})
}
}

但是我发现了错误:

Uncaught TypeError: Cannot read property 'store' of undefined

如何在模块突变名称中正确使用 props

我想映射 this.$store.commit('form1/changeModel'),其中 form1 是从 props 设置的。

最佳答案

Vuex helper mapMutations 可以与一个与 this 一起工作的函数一起使用。

似乎没有这方面的文档,但是 Vuex 单元测试 helpers.spec.js说明了模式。

const vm = new Vue({
store,
methods: mapMutations({
plus (commit, amount) {
commit('inc', amount + 1)
}
})
})

作为奖励,该函数允许将参数传递给突变,这是一个常见的要求。

您的代码更改将是:

export default {
props: {
store: String
},
methods: {
...mapMutations({
changeModel(commit) { commit(`${this.store}/changeModel`) }
})
}
}

组件内的调用只是 changeModel() - mapMutations 负责注入(inject) commit 参数。

请注意,除了一些额外的噪音(与简单的 this.$store.commit() 相比),我不确定这会增加多少,但也许您的要求比示例代码更复杂.

关于javascript - 我可以在 Vue 实例方法内部传播的 mapMutations 中使用 "this"吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52085190/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com