image.png
在我的不断尝试中,成功的发现了,vuex其实有一个辅助函数map可以解决这个问题,下面就把我总结到的语法分享给大家啦~希望可以帮到你
1 . ### mapState的使用步骤
// 1. 导入辅助函数mapState,它是在vuex中定义的一个工具函数。
// es6 按需导入 import { mapState } from 'vuex'
import { mapState } from 'vuex'
computed: {
// 说明1:...对象 是把对象展开,合并到computed
// 说明2:mapState是一个函数
// ['数据项1', '数据项2']
...mapState(['xxx']),
...mapState({'新名字': 'xxx'})
}
复制代码
2 . #### 使用
script: this.xxx
模板: {{xxx}}
复制代码
图示:
image.png
辅助函数mapState对数据重命名
...mapState({'新名字': 'xxx'})
## Vuex-map函数用法汇总
image.png
computed: {
// 省略其他计算属性
...mapState(['xxx']),
...mapState({'新名字': 'xxx'})
}
复制代码
图示
image.png
this.$store.state.模块名.xxx;
computed: {
...mapState('模块名', ['xxx']),
...mapState('模块名', {'新名字': 'xxx'})
}
复制代码
使用全局getters
this.$store.getters.xxx
computed: {
...mapGetters(['xxx']),
...mapGetters({'新名字': 'xxx'})
}
复制代码
使用modules中的getters
this.$store.getters.模块名.xxx
computed: {
...mapGetters('模块名', ['xxx']),
...mapGetters('模块名',{'新名字': 'xxx'})
}
复制代码
使用全局mutations
this.$store.commit('mutation名', 参数)
methods: {
...mapMutations(['mutation名']),
...mapMutations({'新名字': 'mutation名'})
}
复制代码
使用modules中的mutations(namespaced:true)
this.$store.commit('模块名/mutation名', 参数)
methods: {
...mapMutations('模块名', ['xxx']),
...mapMutations('模块名',{'新名字': 'xxx'})
}
复制代码
使用全局actions
this.$store.dispatch('action名', 参数)
methods: {
...mapActions(['actions名']),
...mapActions({'新名字': 'actions名'})
}
复制代码
使用modules中的actions(namespaced:true)
this.$store.dispatch('模块名/action名', 参数)
methods: {
...mapActions('模块名', ['xxx']),
...mapActions('模块名',{'新名字': 'xxx'})
}
复制代码
- 如果namespaced为true,则需要额外去补充模块名
- 如果namespaced为false,则不需要额外补充模块名
总结
image.png
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8