8. mapActions & mapMutations
8.1 mapMutations
mapMutations方法:用于帮助我们生成与mutations
对话的方法,即:包含$store.commit(xxx)
的函数
借助mapMutations生成对应的方法,方法中会调用commit去联系mutations
8.1.1 引入 mapMutations
// 引入 mapMutations import { mapMutations } from 'vuex'
8.1.2 对象写法
Count.vue
<template> <div> <h1>当前求和为: {{sum}}</h1> <h1>当前求和放大10倍为: {{bigSum}}</h1> <h1>学校: {{school}}</h1> <h1>学科: {{subject}}</h1> <select v-model.number="n"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <button @click="increment(n)">+</button> <button @click="decrement(n)">-</button> <button @click="incrementWait">等一等再加</button> <button @click="incrementOdd">当前求和为奇数再加</button> </div> </template> <script> // 导入 mapState mapGetters import { mapState, mapGetters } from 'vuex' // 引入 mapMutations import { mapMutations } from 'vuex' export default { name: 'Count', data() { return { n: 1 } }, computed: { ...... }, methods: { // 自己写的方法 // increment() { // this.$store.commit('INCREMENT', this.n) // }, // decrement() { // this.$store.commit('DECREMENT', this.n) // }, // 借助mapMutations生成对应的方法,方法中会调用commit去联系mutations(对象写法) ...mapMutations({ increment: 'INCREMENT', decrement: 'DECREMENT' }), // 生成的方法为: // increment(value) { // this.$store.commit('INCREMENT', value) // }, // 所以在调用mapMutations生成对应的方法时,需要传入value参数 ...... } } </script>
8.1.3 数组写法
Count.vue
<template> <div> <h1>当前求和为: {{sum}}</h1> <h1>当前求和放大10倍为: {{bigSum}}</h1> <h1>学校: {{school}}</h1> <h1>学科: {{subject}}</h1> <select v-model.number="n"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <button @click="INCREMENT(n)">+</button> <button @click="DECREMENT(n)">-</button> <button @click="incrementWait">等一等再加</button> <button @click="incrementOdd">当前求和为奇数再加</button> </div> </template> <script> // 导入 mapState mapGetters import { mapState, mapGetters } from 'vuex' // 引入 mapMutations import { mapMutations } from 'vuex' export default { name: 'Count', data() { return { n: 1 } }, computed: { ...... }, methods: { // 自己写的方法 // increment() { // this.$store.commit('INCREMENT', this.n) // }, // decrement() { // this.$store.commit('DECREMENT', this.n) // }, // 借助mapMutations生成对应的方法,方法中会调用commit去联系mutations(对象写法) // ...mapMutations({ // increment: 'INCREMENT', // decrement: 'DECREMENT' // }), // 借助mapMutations生成对应的方法,方法中会调用commit去联系mutations(数组写法) ...mapMutations(['INCREMENT', 'DECREMENT']), ...... } } </script> <style> button { margin: 5px; } </style>
8.2 mapActions
mapActions方法:用于帮助我们生成与actions
对话的方法,即:包含$store.dispatch(xxx)
的函数
借助mapActions生成对应的方法,方法中会调用dispatch去联系actions
8.2.1 引入 mapActions
// 引入 mapActions import { mapActions } from 'vuex'
8.2.2 对象写法
Count.vue
<template> <div> <h1>当前求和为: {{sum}}</h1> <h1>当前求和放大10倍为: {{bigSum}}</h1> <h1>学校: {{school}}</h1> <h1>学科: {{subject}}</h1> <select v-model.number="n"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <button @click="INCREMENT(n)">+</button> <button @click="DECREMENT(n)">-</button> <button @click="incrementWait(n)">等一等再加</button> <button @click="incrementOdd(n)">当前求和为奇数再加</button> </div> </template> <script> // 导入 mapState mapGetters import { mapState, mapGetters } from 'vuex' // 引入 mapMutations import { mapMutations, mapActions } from 'vuex' export default { name: 'Count', data() { return { n: 1 } }, computed: { ...... }, methods: { ...... // 自己写的方法 // incrementWait() { // this.$store.dispatch('incrementWait', this.n) // }, // incrementOdd() { // this.$store.dispatch('incrementOdd', this.n) // } // 借助mapActions生成对应的方法,方法中会调用dispatch去联系actions(对象写法) ...mapActions({ incrementWait: 'incrementWait', incrementOdd: 'incrementOdd' }) // 生成的方法为: // incrementWait(value) { // this.$store.dispatch('incrementWait', value) // }, // 所以在调用mapActions生成对应的方法时,需要传入value参数 } } </script>
8.2.3 数组写法
<template> <div> <h1>当前求和为: {{sum}}</h1> <h1>当前求和放大10倍为: {{bigSum}}</h1> <h1>学校: {{school}}</h1> <h1>学科: {{subject}}</h1> <select v-model.number="n"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <button @click="INCREMENT(n)">+</button> <button @click="DECREMENT(n)">-</button> <button @click="incrementWait(n)">等一等再加</button> <button @click="incrementOdd(n)">当前求和为奇数再加</button> </div> </template> <script> // 导入 mapState mapGetters import { mapState, mapGetters } from 'vuex' // 引入 mapMutations import { mapMutations, mapActions } from 'vuex' export default { name: 'Count', data() { return { n: 1 } }, computed: { ...... }, methods: { ...... // 自己写的方法 // incrementWait() { // this.$store.dispatch('incrementWait', this.n) // }, // incrementOdd() { // this.$store.dispatch('incrementOdd', this.n) // } // 借助mapActions生成对应的方法,方法中会调用dispatch去联系actions(对象写法) // ...mapActions({ // incrementWait: 'incrementWait', // incrementOdd: 'incrementOdd' // }) // 借助mapActions生成对应的方法,方法中会调用dispatch去联系actions(数组写法) ...mapActions(['incrementWait', 'incrementOdd']) } } </script>
9. vuex 总结
1.概念
在Vue中实现集中式状态(数据)管理的一个Vue插件,对vue应用中多个组件的共享状态进行集中式的管理(读/写),也是一种组件间通信的方式,且适用于任意组件间通信。
2.何时使用?
多个组件需要共享数据时
3.搭建vuex环境
- 创建文件:
src/store/index.js
//引入Vue核心库 import Vue from 'vue' //引入Vuex import Vuex from 'vuex' //应用Vuex插件 Vue.use(Vuex) //准备actions对象——响应组件中用户的动作 const actions = {} //准备mutations对象——修改state中的数据 const mutations = {} //准备state对象——保存具体的数据 const state = {} //创建并暴露store export default new Vuex.Store({ actions, mutations, state })
- 在
main.js
中创建vm时传入store
配置项
...... //引入store import store from './store' ...... //创建vm new Vue({ el:'#app', render: h => h(App), store })
4.基本使用
- 初始化数据、配置
actions
、配置mutations
,操作文件store.js
//引入Vue核心库 import Vue from 'vue' //引入Vuex import Vuex from 'vuex' //引用Vuex Vue.use(Vuex) const actions = { //响应组件中加的动作 jia(context,value){ // console.log('actions中的jia被调用了',miniStore,value) context.commit('JIA',value) }, } const mutations = { //执行加 JIA(state,value){ // console.log('mutations中的JIA被调用了',state,value) state.sum += value } } //初始化数据 const state = { sum:0 } //创建并暴露store export default new Vuex.Store({ actions, mutations, state, })
- 组件中读取vuex中的数据:
$store.state.sum
- 组件中修改vuex中的数据:
$store.dispatch('action中的方法名',数据)
或$store.commit('mutations中的方法名',数据)
备注:若没有网络请求或其他业务逻辑,组件中也可以越过actions,即不写
dispatch
,直接编写commit
5.getters的使用
- 概念:当state中的数据需要经过加工后再使用时,可以使用getters加工。
- 在
store.js
中追加getters
配置
...... const getters = { bigSum(state){ return state.sum * 10 } } //创建并暴露store export default new Vuex.Store({ ...... getters })
- 组件中读取数据:
$store.getters.bigSum
6.四个map方法的使用
- mapState方法:用于帮助我们映射
state
中的数据为计算属性
computed: { //借助mapState生成计算属性:sum、school、subject(对象写法) ...mapState({sum:'sum',school:'school',subject:'subject'}), //借助mapState生成计算属性:sum、school、subject(数组写法) ...mapState(['sum','school','subject']), },
- mapGetters方法:用于帮助我们映射
getters
中的数据为计算属性
computed: { //借助mapGetters生成计算属性:bigSum(对象写法) ...mapGetters({bigSum:'bigSum'}), //借助mapGetters生成计算属性:bigSum(数组写法) ...mapGetters(['bigSum']) },
- mapActions方法:用于帮助我们生成与
actions
对话的方法,即:包含$store.dispatch(xxx)
的函数
methods:{ //靠mapActions生成:incrementOdd、incrementWait(对象形式) ...mapActions({incrementOdd:'jiaOdd',incrementWait:'jiaWait'}) //靠mapActions生成:incrementOdd、incrementWait(数组形式) ...mapActions(['jiaOdd','jiaWait']) }
- mapMutations方法:用于帮助我们生成与
mutations
对话的方法,即:包含$store.commit(xxx)
的函数
methods:{ //靠mapActions生成:increment、decrement(对象形式) ...mapMutations({increment:'JIA',decrement:'JIAN'}), //靠mapMutations生成:JIA、JIAN(对象形式) ...mapMutations(['JIA','JIAN']), }
备注:mapActions与mapMutations使用时,若需要传递参数需要:在模板中绑定事件时传递好参数,否则参数是事件对象。