当前位置:   article > 正文

VUE2,VUE3中Vuex的使用详解_vuex和vue3

vuex和vue3

文章目录 

一、Vuex是什么

 Vuex是实现组件全局状态(数据)管理的一种机制,可以方便的实现组件之间数据的共享。

优点:

能够在Vuex中集中管理共享的数居,易于开发和后期维护
能够高效地实现组件之间的数据共享,提高开发效率
存储在vuex中的数据都是响应式的,能够实时保持数据与页面的同步
什么样的数据适合存储到Vuex中:

一般情况下,只有组件之间共享的数据,才有必要存储到vuex中;对于组件中的私有数据,依旧存储在组件自身的data中即可。

1.1 安装与使用

vue2:

main.js

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import store from './store'
  4. Vue.config.productionTip = false
  5. new Vue({
  6. store,
  7. render: h => h(App)
  8. }).$mount('#app')

store / index.js

  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. Vue.use(Vuex)
  4. export default new Vuex.Store({
  5. state: {
  6. },
  7. mutations: {
  8. },
  9. actions: {
  10. },
  11. modules: {
  12. }
  13. })

vue3:

store/index.js

 

main.js

 

 1.2 store和单纯的全局对象有什么区别?

  1. store中的数据是响应式的当,Vue组件从store中读取状态的时候,若store中的状态发生变化,那么相应的组件也会被更新;
  2. 不能直接修改store中的数据,只能通过提交commit来修改,这样使得我们可以方便的跟踪每一个状态的变化,从而让我们能够通过一些工具帮助我们更好的管理应用的状态

二、State 数据源

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

2.1 通过 this.$store.state.全局数据名称 访问

this.$store.state.全局数据名称

由于在模板字符串中,是不需要写this的,所以直接写this后边的。

<h3>当前最新的count值为:{{$store.state.count}}</h3>

直接写this.$store.state.name 过于繁琐,可以在计算属性里面返回,然后直接使用计算属性的值:

  1. computed: {
  2. name() {
  3. return this.$store.state.name
  4. }
  5. }

 vue3的composition api中使用 :

  1. import { mapState, useStore } from 'vuex'
  2. import { computed } from 'vue'
  3. export default {
  4. setup() {
  5. const store = useStore()
  6. const sCounter = computed(() => store.state.counter)
  7. return {
  8. sCounter
  9. }
  10. }
  11. }

2.2 mapState 映射为计算属性

通过导入的 mapState 函数,将当前组件需要的全局数据,映射为当前组件的 computed计算属性:

mapState()接受数组或者对象作为参数:

vue2的options中使用:

  1. <!-- 使用: -->
  2. <h3>当前最新的count值为:{{ count }}</h3>
  1. //1.导入辅助函数 mapState
  2. import { mapState } from 'vuex'
  3. export default {
  4. data() {
  5. return {}
  6. },
  7. computed: {
  8. // 将count映射为计算属性
  9. ...mapState(['count']),
  10. // 将sCounter,sName映射为计算属性
  11. ...mapState({
  12. sCounter: state => state.counter,
  13. sName: state => state.name
  14. })
  15. },
  16. }

vue3的composition api中使用 

在setup()中使用mapState()得到的返回值无法直接使用,必须经过一层封装

  • 这是因为通过mapState()得到的getter函数内部是通过this.$store去获取状态,但是getter函数中的this并没有绑定到vue实例,直接执行的函数中this指向windows,所以读取this.$store会报错,需要手动将函数的this绑定到{$store:store}
  • 通过mapState()解析得到的数据只是普通函数,不是响应式的,需要用computed()包裹
  1. import { mapState, useStore } from 'vuex'
  2. import { computed } from 'vue'
  3. export default {
  4. setup() {
  5. const store = useStore()
  6. const storeStateFns = mapState(["counter", "name", "age", "height"])
  7. const storeState = {}
  8. Object.keys(storeStateFns).forEach(fnKey => {
  9. const fn = storeStateFns[fnKey].bind({$store: store})
  10. storeState[fnKey] = computed(fn)
  11. })
  12. return {
  13. ...storeState
  14. }
  15. }
  16. }

mapState()的返回值是一个对象,对象中的每一个值对应一个getter函数

  1. storeStateFns = {
  2. function counter (){
  3. return this.$store.state.conter
  4. },
  5. function name (){
  6. return this.$store.state.name
  7. }
  8. }

 

三、Mutations 变更store中的数据

注意: 只有 mutations里的函数,才有权利修改 state 的数据
注意: mutations里不能包含异步操作

①只能通过 mutations变更 Store数据,不可以直接操作 Store中的数据。
②通过这种方式虽然操作起来稍微繁琐一些,但是可以集中监控所有数据的变化

  1. const store = new Vuex.Store({
  2. state:{
  3. count:0
  4. },
  5. mutations:{
  6. add(state){
  7. //变更状态
  8. state.count++
  9. }
  10. }
  11. })

3.1 this.$store.commit() 触发 mutations

this.$store.commit() 是触发 mutations的第一种方式 

  1. Increment() {
  2. this.$store.commit('add')
  3. },

 3.1.1 触发 mutations 时传递值

  1. IncrementN(){
  2. this.$store.commit('addN',{num:5})
  3. }
  4. mutations: {
  5. add(state) {
  6. // 变更状态
  7. state.count++
  8. },
  9. addN(state,step){
  10. // 变更状态
  11. state.count += step.num
  12. }
  13. },

3.2 MapMutations 映射为方法

options api:

1.从vuex中按需导入 mapMutations函数
import {mapMutations} from 'vuex'

2.通过按需导入的 mapMutations函数,映射为当前组件的methods函数。

  1. // store
  2. mutations: {
  3. add(state) {
  4. // 变更状态
  5. state.count++
  6. },
  7. sub(state) {
  8. state.count--
  9. },
  10. addN(state, step) {
  11. // 变更状态
  12. state.count += step
  13. },
  14. subN(state, step) {
  15. state.count -= step
  16. }
  17. },
  18. // 组件A
  19. import { mapState,mapMutations } from 'vuex'
  20. methods:{
  21. // 在methods中注册sub,subN方法
  22. ...mapMutations(['sub','subN']),
  23. decrement(){
  24. // 调用
  25. this.sub()
  26. },
  27. decrementN(){
  28. this.subN(5)
  29. }
  30. }

compotions api:

  1. import { mapMutations, mapState } from 'vuex'
  2. export default {
  3. methods: {
  4. ...mapMutations(["increment", "decrement"]),
  5. ...mapMutations({
  6. add: "increment"
  7. })
  8. },
  9. setup() {
  10. const storeMutations = mapMutations(["increment", "decrement"])
  11. return {
  12. ...storeMutations
  13. }
  14. }
  15. }

3.3 Mutation常量类型

 当我们的项目增大时, Vuex管理的状态越来越多, 需要更新状态的情况越来越多, 那么意味着Mutation中的方法越来越多. 方法过多, 使用者需要花费大量的经历去记住这些方法, 可能还会出现写错的情况.

  • 我们可以创建一个文件: mutation-types.js, 并且在其中定义我们的常量.
  • 定义常量时, 我们可以使用ES2015中的风格, 使用一个常量来作为函数的名称.

 

3.4 Mutation同步函数

  Vuex要求我们Mutation中的方法必须是同步方法.

  • 主要的原因是当我们使用devtools时, 可以devtools可以帮助我们捕捉mutation的快照.
  • 但是如果是异步操作, 那么devtools将不能很好的追踪这个操作什么时候会被完成.

四、Actions 专门处理异步操作

如果通过异步操作变更数据,必须通过 Action,而不能使用Mutation,但是在 Action中还是要通过触发Mutation的方式间接变更数据。

注意: 在Actions 中不能直接修改 state中的数据,要通过 mutations修改。

action的参数context?

context是和store对象具有相同方法和属性的对象,可以通过context去进行commit相关的操作, 也可以获取context.state等.

但是注意, 这里它们并不是同一个对象, 为什么呢? 我们后面学习Modules的时候, 再具体说.

4.1 this.$store.dispatch 触发 Actions

store.js

  1. // 定义 Action
  2. const store = new Vuex.store({
  3. // ...省略其他代码
  4. mutations: {
  5. // 只有 mutations中的函数才有权利修改 state。
  6. // 不能在 mutations里执行异步操作。
  7. add(state,payload) {
  8. state.count+=payload
  9. }
  10. },
  11. actions: {
  12. // 在Actions 中不能直接修改 state中的数据,要通过 mutations修改。
  13. // 也可以接受payload
  14. addAsync(context,payload) {
  15. setTimeout(() => {
  16. context.commit('add',payload)
  17. }, 1000);
  18. }
  19. },
  20. })

组件A

  1. // 触发 Action
  2. methods:{
  3. handle(){
  4. // 触发 actions 的第一种方式
  5. this.$store.dispatch('addAsync',5)
  6. }
  7. }

4.2 mapActions 映射为方法

options api:

1.从Vuex中按需导入 mapActions 函数。

import {mapActions} from 'vuex'

2.将指定的 actions 函数,映射为当前组件 methods 的方法。

  1. methods:{
  2. ...mapActions(['subAsync']),
  3. decrementAsync(){
  4. this.subAsync()
  5. }
  6. }

 store.js

  1. actions: {
  2. // 在Actions 中不能直接修改 state中的数据,要通过 mutations修改。
  3. subAsync(context){
  4. setTimeout(() => {
  5. context.commit('sub')
  6. }, 1000);
  7. }
  8. }

compotion  api:

  1. import { mapActions } from 'vuex'
  2. export default {
  3. methods: {
  4. ...mapActions(["incrementAction", "decrementAction"]),
  5. ...mapActions({
  6. add: "incrementAction",
  7. sub: "decrementAction"
  8. })
  9. },
  10. setup() {
  11. const actions = mapActions(["incrementAction", "decrementAction"])
  12. const actions2 = mapActions({
  13. add: "incrementAction",
  14. sub: "decrementAction"
  15. })
  16. return {
  17. ...actions,
  18. ...actions2
  19. }
  20. }
  21. }

五、Getter

  • Getter 用于对 Store中的数据进行加工处理形成新的数据。
  • Getter 不会修改 Store 中的原数据,它只起到一个包装器的作用,将Store中的数据加工后输出出来。
  • Getter可以对 Store中已有的数据加工处理之后形成新的数据,类似Vue的计算属性。
  • Store中数据发生变化, Getter 的数据也会跟着变化。
  • getter第一个参数是state,第二个参数是getters
  1. //定义 Getter
  2. const store = new Vuex.Store({
  3. state:{
  4. count:0,
  5. name: ''
  6. },
  7. getters: {
  8. showNum(state) {
  9. return '当前最新的数量是【' + state.count + '】'
  10. },
  11. showNameNum(state,getters){
  12. return state.name + getters.shouNum
  13. }
  14. },
  15. })

getters默认是不能传递参数的, 如果希望传递参数, 那么只能让getters本身返回另一个函数

  1. //定义 Getter
  2. const store = new Vuex.Store({
  3. state:{
  4. count:0,
  5. name: ''
  6. },
  7. getters: {
  8. getLenById(state) {
  9. return (id)=>{return id.length}
  10. }
  11. },
  12. })
  13. //组件中使用
  14. this.$store.getters.getLenById(1)

5.1 通过 this.$store.getters.名称 访问

this.$store.getters.名称

5.2 mapGetters 映射为计算属性

options api:

 

 composition api:封装一个Hooks

 

6.modules

 Vuex允许我们将store分割成模块(Module), 而每个模块拥有自己的state、mutation、action、getters等

定义一个homeModule:

  1. // homeModule
  2. const homeModule = {
  3. namespaced: true,
  4. state() {
  5. return {
  6. homeCounter: 100
  7. }
  8. },
  9. getters: {
  10. doubleHomeCounter(state, getters, rootState, rootGetters) {
  11. return state.homeCounter * 2
  12. },
  13. otherGetter(state) {
  14. return 100
  15. }
  16. },
  17. mutations: {
  18. increment(state,rootState) {
  19. state.homeCounter++
  20. rootState.age++
  21. }
  22. },
  23. actions: {
  24. // 参数中没有rootCommit,rootDispatch
  25. incrementAction({commit, dispatch, state, rootState, getters, rootGetters}) {
  26. commit("increment")
  27. // module中调用根方法,或者根action
  28. commit("increment", null, {root: true})
  29. dispatch('getData',null,{toor:true})
  30. }
  31. }
  32. }
  33. export default homeModule

模块注意事项:

  • mutations,getters,actions中的参数添加了对应的根目录中的数据
  • 如果在定义模块时,没有定义namespaced,则namespaced默认为false,此时state,mutations,getters,actions还是注册在全局命名空间,在组件中使用和以前一样
  • namespaced:true,模块会有自己的命名空间,在组件中使用模块中的内容是需要加上模块

在组件中使用:

直接使用:
this.$store.state.home.homeCounter
this.$store.getter.home.homeCounter
this.$store.commit("home/increment")
this.$store.dispatch("home/incrementAction")

辅助函数:

mapState(mapGetters类型)

  1. import { mapState } from 'vuex'
  2. export default {
  3. computed: {
  4. ...mapState({
  5. // 参数为对象
  6. count: state => state.count, // 箭头函数可使代码更简练 映射为this.count
  7. userCount: state => state => state.user.count, // 模块化写法 映射为this.userCount
  8. })
  9. ...mapState('user',{count:'count',userCount:'userCount'})
  10. // 参数为数组
  11. ... mapState('user', ['count', 'name'])
  12. }
  13. }

mapMutations(mapAction类似)

  1. import { mapState } from 'vuex'
  2. export default {
  3. methods: {
  4. ...mapActions('home',['add','sub'])
  5. ...mapActions(['home/add','home/sub'])
  6. }
  7. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/190894
推荐阅读
相关标签
  

闽ICP备14008679号