Vuex学习笔记
1. 概念
?Vuex 是一个专为vue.js应用程序开发的状态管理模式。在庞大的项目中,能够方便地集中式管理和维护组件之间频繁传递的data中的值,也是组件之间通信的方式,适用于任意组件间通信。
2. 工作流程
备注:若没有网络请求或其他业务逻辑,组件中也可以越过actions,即不写dispatch,直接commit
3. 安装
npm i vuex
4. 搭建Vuex环境
在main.js文件中创建Vue时传入store配置项
import Vue from 'vue'
import App from './App.vue'
import store from './store'
new Vue({
el:'app',
render: h => h(App),
store,
})
创建store/index.js文件
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
const action = {}
const mutations = {}
const state = {}
const getters = {}
export default new Vuex.Store({
action,
mutations,
state,
getters,
})
5. 基本使用
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
const action = {
showName(context,value){
context.commit('SHOWNAME',value)
}
}
const mutations = {
SHOWNAME(state,value){
state.name = value
}
}
const state = {
name: 'hello Vuex',
age: 25,
}
const getters = {
upName(state){
return state.name = 'HELLO VUEX'
}
}
export default new Vuex.Store({
action,
mutations,
state,
getters,
})
在组件中使用Vuex
- 在视图(template)中,用
$store.state.name / this.$store.getters.upName ; - 在脚本(script)中,用
this.$store.state.name / this.$store.getters.upName ; - 用
this.$store.dispatch('showName','hello') 调用action; - 也可以直接用
this.$store.commit('SHOWNAME','hello') 调用mutation。
6. 借助map使用
6.1 mapState和mapGetters
import {mapState,mapGetters} from 'vuex'
export default {
data(){return {}},
computed:{
...mapState({mingzi:'name',nianling:'age'})
...mapState(['name','age'])
...mapGetters({upName:'upName'})
...mapGetters(['upName'])
}
}
6.2 mapActions和mapMutations
import {mapActions,mapMutations} from 'vuex'
export default {
data(){return {}},
methods:{
...mapActions({showName:'showName'})
...mapActions(['showName'])
...mapMutations({showName:'SHOWNAME'})
...mapMutations(['SHOWNAME'])
}
}
备注:mapActions和mapMutations使用时,若需要传递参数,在模板中绑定事件时传递好参数,否则参数是事件对象。
7. 模块化
一些规则:
- 应用层级的状态应该集中到单个 store 对象中。
- 提交
mutation 是更改状态的唯一方法,并且这个过程是同步的。 - 异步逻辑都应该封装到
action 里面。
├── index.html
├── main.js
├── api
│ └── ... # 抽取出API请求
├── components
│ ├── App.vue
│ └── ...
└── store
├── index.js # 我们组装模块并导出 store 的地方
├── actions.js # 根级别的 action
├── mutations.js # 根级别的 mutation
└── modules
├── cart.js # 购物车模块
└── products.js # 产品模块
8. 模块化后的四个map使用方法
未完待续。。。
|