vuex学习

介绍

Vuex 是一个 Vue 的 状态管理工具,状态就是数据。

大白话:Vuex 是一个插件,可以帮我们管理 Vue 通用的数据 (多组件共享的数据)。例如:购物车数据 个人信息数据。

https://vuex.vuejs.org/zh/

安装

1
yarn add vuex@3 或者 npm i vuex@3

新建 store/index.js 专门存放 vuex

store/index.js

1
2
3
4
5
6
7
8
9
10
11
12
// 导入 vue
import Vue from 'vue'
// 导入 vuex
import Vuex from 'vuex'
// vuex也是vue的插件, 需要use一下, 进行插件的安装初始化
Vue.use(Vuex)

// 创建仓库 store
const store = new Vuex.Store()

// 导出仓库
export default store

在 main.js 中导入挂载到 Vue 实例上

main.js

1
2
3
4
5
6
7
8
9
10
import Vue from 'vue'
import App from './App.vue'
import store from './store'

Vue.config.productionTip = false

new Vue({
render: h => h(App),
store
}).$mount('#app')

state 状态

提供数据

State提供唯一的公共数据源,所有共享的数据都要统一放到Store中的State中存储。

打开项目中的store.js文件,在state对象中可以添加我们要共享的数据。

1
2
3
4
5
6
7
8
9
10
// 创建仓库 store
const store = new Vuex.Store({
// state 状态, 即数据, 类似于vue组件中的data,
// 区别:
// 1.data 是组件自己的数据,
// 2.state 中的数据整个vue项目的组件都能访问到
state: {
count: 101
}
})

访问Vuex中的数据

  1. 通过$store直接访问 —>
  2. 通过辅助函数mapState 映射计算属性 —>
1
2
3
4
5
6
7
8
获取 store:
1.Vue模板中获取 this.$store
2.js文件中获取 import 导入 store


模板中: {{ $store.state.xxx }}
组件逻辑中: this.$store.state.xxx
JS模块中: store.state.xxx

通过辅助函数 - mapState获取 state中的数据

mapState是辅助函数,帮助我们把store中的数据映射到 组件的计算属性中, 它属于一种方便的用法

1.导入mapState (mapState是vuex中的一个函数)

1
import { mapState } from 'vuex'

2.采用数组形式引入state属性

1
mapState(['count']) 

3.利用展开运算符将导出的状态映射给计算属性

1
2
3
computed: {
...mapState(['count'])
}
1
<div> state的数据:{{ count }}</div>

开启严格模式

通过 strict: true 可以开启严格模式,开启严格模式后,直接修改state中的值会报错

state数据的修改只能通过mutations,并且mutations必须是同步的

1
2
3
4
5
6
7
8
9
const store = new Vuex.Store(
//开启严格模式
strict:true
//通过state可以提供数据
state: {
title:'仓库大标题'
count: 100
}
)

mutations

1
2
3
4
5
6
7
8
9
const store  = new Vuex.Store({
state: {
count: 0
},
// 定义mutations
mutations: {

}
})

mutations是一个对象,对象中存放修改state的方法

1
2
3
4
5
6
7
mutations: {
// 方法里参数 第一个参数是当前store的state属性
// payload 载荷 运输参数 调用mutaiions的时候 可以传递参数 传递载荷
addCount (state) {
state.count += 1
}
},

组件中提交 mutations

1
this.$store.commit('addCount')

带参数的 mutations

提交 mutation 是可以传递参数的 this.$store.commit('xxx', 参数)

1
2
3
4
5
6
mutations: {
...
addCount (state, count) {
state.count = count
}
},
1
2
3
handle () {
this.$store.commit('addCount', 10)
}

提交的参数只能是一个, 如果有多个参数要传, 可以传递一个对象

1
2
3
this.$store.commit('addCount', {
count: 10
})

辅助函数- mapMutations

mapMutations和mapState很像,它把位于mutations中的方法提取了出来,我们可以将它导入

1
2
3
4
import  { mapMutations } from 'vuex'
methods: {
...mapMutations(['addCount'])
}

等价于:

1
2
3
4
5
6
methods: {
// commit(方法名, 载荷参数)
addCount () {
this.$store.commit('addCount')
}
}
1
<button @click="addCount">值+1</button>

请注意: Vuex中mutations中要求不能写异步代码,如果有异步的ajax请求,应该放置在actions中

actions

state是存放数据的,mutations是同步更新数据 (便于监测数据的变化, 更新视图等, 方便于调试工具查看变化),

actions则负责进行异步操作。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mutations: {
  changeCount (state, newCount) {
    state.count = newCount
  }
}


actions: {
setAsyncCount (context, num) {
// 一秒后, 给一个数, 去修改 num
setTimeout(() => {
context.commit('changeCount', num)
}, 1000)
}
},

组件中通过dispatch调用

1
2
3
setAsyncCount () {
this.$store.dispatch('setAsyncCount', 666)
}

辅助函数 -mapActions

1
2
3
4
5
6
7
8
9
10
11
import { mapActions } from 'vuex'
methods: {
...mapActions(['changeCountAction'])
}

//mapActions映射的代码 本质上是以下代码的写法
//methods: {
//  changeCountAction (n) {
//    this.$store.dispatch('changeCountAction', n)
//  },
//}
1
<button @click="changeCountAction(200)">+异步</button>

getters

除了state之外,有时我们还需要从state中筛选出符合条件的一些数据,这些数据是依赖state的,此时会用到getters

1
2
3
state: {
list: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
}

组件中,需要显示所有大于5的数据,正常的方式,是需要list在组件中进行再一步的处理,但是getters可以帮助我们实现它

1
2
3
4
5
getters: {
// getters函数的第一个参数是 state
// 必须要有返回值
filterList: state => state.list.filter(item => item > 5)
}
1
<div>{{ $store.getters.filterList }}</div>

辅助函数 - mapGetters

1
2
3
computed: {
...mapGetters(['filterList'])
}
1
<div>{{ filterList }}</div>

module

由于使用单一状态树,应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时,store 对象就有可能变得相当臃肿。

这句话的意思是,如果把所有的状态都放在state中,当项目变得越来越大的时候,Vuex会变得越来越难以维护

由此,又有了Vuex的模块化。

定义两个模块 usersetting

user中管理用户的信息状态 userInfo modules/user.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const state = {
userInfo: {
name: 'zs',
age: 18
}
}

const mutations = {}

const actions = {}

const getters = {}

export default {
state,
mutations,
actions,
getters
}

setting中管理项目应用的 主题色 theme,描述 desc, modules/setting.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const state = {
theme: 'dark'
desc: '描述真呀真不错'
}

const mutations = {}

const actions = {}

const getters = {}

export default {
state,
mutations,
actions,
getters
}

store/index.js文件中的modules配置项中,注册这两个模块

1
2
3
4
5
6
7
8
9
import user from './modules/user'
import setting from './modules/setting'

const store = new Vuex.Store({
modules:{
user,
setting
}
})

使用模块中的数据, 可以直接通过模块名访问 $store.state.模块名.xxx => $store.state.setting.desc

也可以通过 mapState 映射

使用模块中的数据

  1. 直接通过模块名访问 $store.state.模块名.xxx
  2. 通过 mapState 映射:
    1. 默认根级别的映射 mapState([ ‘xxx’ ])
    2. 子模块的映射 :mapState(‘模块名’, [‘xxx’]) - 需要开启命名空间 namespaced:true

获取模块内的getters数据

使用模块中 getters 中的数据:

  1. 直接通过模块名访问 $store.getters['模块名/xxx ']
  2. 通过 mapGetters 映射
    1. 默认根级别的映射 mapGetters([ 'xxx' ])
    2. 子模块的映射 mapGetters('模块名', ['xxx']) - 需要开启命名空间

使用模块内的mutations方法

  1. 直接通过 store 调用 $store.commit(‘模块名/xxx ‘, 额外参数)
  2. 通过 mapMutations 映射
    1. 默认根级别的映射 mapMutations([ ‘xxx’ ])
    2. 子模块的映射 mapMutations(‘模块名’, [‘xxx’]) - 需要开启命名空间

获取模块内的actions方法

  1. 直接通过 store 调用 $store.dispatch(‘模块名/xxx ‘, 额外参数)
  2. 通过 mapActions 映射
    1. 默认根级别的映射 mapActions([ ‘xxx’ ])
    2. 子模块的映射 mapActions(‘模块名’, [‘xxx’]) - 需要开启命名空间

Vuex模块化的使用小结

1.直接使用

  1. state –> $store.state.模块名.数据项名
  2. getters –> $store.getters[‘模块名/属性名’]
  3. mutations –> $store.commit(‘模块名/方法名’, 其他参数)
  4. actions –> $store.dispatch(‘模块名/方法名’, 其他参数)

2.借助辅助方法使用

1.import { mapXxxx, mapXxx } from ‘vuex’

computed、methods: {

​ // …mapState、…mapGetters放computed中;

​ // …mapMutations、…mapActions放methods中;

​ …mapXxxx(‘模块名’, [‘数据项|方法’]),

​ …mapXxxx(‘模块名’, { 新的名字: 原来的名字 }),

}

2.组件中直接使用 属性 {{ age }} 或 方法 @click="updateAge(2)"


vuex学习
http://hanqichuan.com/2024/10/18/前端/vuex学习/
作者
韩启川
发布于
2024年10月18日
许可协议