• 一文让你掌握Vue的状态管理机Vuex



    一、Vuex是什么?

    Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。它采用集中式存储管理应用的所有组件的状态,并以相应的规则保证状态以一种可预测的方式发生变化。

    二、Vue的状态管理模式,是围绕着三个概念展开监视的

    • state,驱动应用的数据源;
    • view,以声明方式将 state 映射到视图;
    • actions,响应在 view 上的用户输入导致的状态变化。

    以下是一个表示“单向数据流”理念的简单示意:
    状态管理模式概念图

    但是上面这种单向数据流在一些特定条件下,也会表现出劣势;
    当我们的应用遇到多个组件共享状态时,单向数据流的简洁性很容易被破坏:以及需要以下需求时

    • 多个视图依赖于同一状态。
    • 来自不同视图的行为需要变更同一状态

    对于问题一,传参的方法对于多层嵌套的组件将会非常繁琐,并且对于兄弟组件间的状态传递无能为力。
    对于问题二,我们经常会采用父子组件直接引用或者通过事件来变更和同步状态的多份拷贝。以上的这些模式非常脆弱,通常会导致无法维护的代码。

    所以为了应对以上问题,Vuex就诞生了


    三 、什么情况下需要使用 Vuex?

    官方描述:Vuex 可以帮助我们管理共享状态,并附带了更多的概念和框架。这需要对短期和长期效益进行权衡。
    如果您不打算开发大型单页应用,使用 Vuex 可能是繁琐冗余的。确实是如此——如果您的应用够简单,您最好不要使用 Vuex。一个简单的 store 模式 (opens new window)就足够您所需了。但是,如果您需要构建一个中大型单页应用,您很可能会考虑如何更好地在组件外部管理状态,Vuex 将会成为自然而然的选择。

    Vuex 的Api 文档流程图:
    在这里插入图片描述

    四、安装配置Vuex

    1.安装Vuex

    npm install vuex@next --save
    
    • 1

    2.应用Vuex

    import Vue from 'vue'
    import Vuex from 'vuex'   //引入Vuex
    Vue.use(Vuex);          //  应用Vuex到Vue实例上
    
    • 1
    • 2
    • 3

    3.创建 store(仓库), 并把store 暴露出去

    const store = new Vuex.Store({
       //这里面配置托管的数据状态
    })
    export default store;
    
    • 1
    • 2
    • 3
    • 4

    4.在main.js中导入store,并将store 挂载到Vue实例身上

    import store from './store'
    new Vue({
      store,
      render: h => h(App)
    }).$mount('#app')
    
    • 1
    • 2
    • 3
    • 4
    • 5

    五、Vuex 五个核心概念

    State (初始化状态)

    1.初始化创建 State

    
    //直接定义一个 store ,store 是一个对象
    let state = {
      numberdata: 0
    }
    
    const store = new Vuex.Store({
    //并把state 挂载给store 进行集中管理
      state,
    })
    export default store;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    2.读取 State 中的数据

     <h1>{{ daname }}</h1>   //使用计算属性
     <h1>{{ $store.state.numberdata }}</h1>   //  使用插值语法直接从store 身上读取
    
    <script>
    export default {
        computed: {
            daname() {   //使用计算属性代理接收
                return this.$store.state.numberdata;
            },
        },
    };
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    3.mapState 【辅助函数】

    目的:简短缩写 ,插值语法拿取 state 中的代码

    mapState (对象写法)
     <h1>{{ sum}}</h1>  
     <h1>{{ name}}</h1>  
    <script>
    import { mapState } from "vuex";
    export default {
        computed: {
              //这是我们自己定义使用计算属性代理接收,但是当数据过多时,拿取依然会显得劣势
              //daname() { 
              //       return this.$store.state.numberdata;
              // },
    
              ...mapState({  //mapState调用传入一个对象,对象的  key  就是需要用到到属性名,value就是与之对应的 state 中的属性,类型是String。
                sum: "numberdata",
                name: "dataname",
            }), 
        },
    };
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    mapState (数组写法)
     <h1>{{ dataname}}</h1>  
     <h1>{{ numberdata}}</h1>  
    <script>
    import { mapState } from "vuex";
    export default {
        computed: {
           ...mapState(["dataname", "numberdata"]),   //当我们想要用到的属性名 与 state 中的属性名,完全一致时,就可以更简化一点,调用写成数组的形式。
        },
    };
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    Action (分发事件请求)

    作用:用来处理改变数据状态前,对数据的状态筛选判断,以及开启异步任务的中转站。

    组件中触发:

     methods: {
            add() {  //事件中通过  $store.dispatch 触发 Action ,参数一为,要触发的 Action 中对应的事件名,参数二,为携带的参数
                this.$store.dispatch("increase", 123);
            },
        },
    
    • 1
    • 2
    • 3
    • 4
    • 5

    描述

    Action 函数接受一个与 store 实例具有相同方法和属性的 context 对象,因此你可以调用 context.commit 提交一个 mutation,或者通过 context.state 和 context.getters 来获取 state 和 getters。

    let actions = {
      increase(context , datnum) {    //接收两个参数   datnum 为接收的参数。
        mentet.commit("ADD", datnum);
      }
        // setTimeout(() => {       在actions 中开启异步任务
        //   mentet.commit("ADD", datnum)
        // }, 5000)
    }
    const store = new Vuex.Store({   //同样需要把 actions 挂载到 store 上进行管理
      state,
      actions,
    })
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    mapActions【辅助函数】

    通过 mapActions 把 Actions 中的函数 映射到 methods 中,,详情可见下 mapMutations 同理!

       
      methods: {
       add(){  //默认写法
           this.$store.dispatch("increase",123)
          }
      ...mapActions(["increase"]),  //数组映射写法
      ...mapActions({ add: "increase" }),  //对象映射写法,
      },
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    Mutation (操作,更改状态)

    触发方式

    let actions = {
      increase(context , datnum) {   
        context.commit("ADD", datnum);  // 在 actions 通过参数一 身上的  commit 触发
      }
        // setTimeout(() => {       
        //   mentet.commit("ADD", datnum)
        // }, 5000)
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    组件中

      methods: {    //也可以在组件中,直接触发  Mutation 
            add() {
                this.$store.commit("ADD", this.num);
            },
        },
    
    • 1
    • 2
    • 3
    • 4
    • 5

    描述:更改 Vuex 的 store 中的状态的唯一方法是提交 mutation。Vuex 中的 mutation 非常类似于事件:每个 mutation 都有一个字符串的事件类型 (type)和一个回调函数 (handler)。这个回调函数就是我们实际进行状态更改的地方,并且它会接受 state 作为第一个参数:

    let mutations = {     
      ADD(a, b) {     //定义操作更改数据的具体方法(函数)  接受 state 作为第一个参数,参数一 可以直接拿到store 身上的数据,
        a.numberdata += b;
      }
    }
    const store = new Vuex.Store({  //同样需要把 mutations 挂载到 store 上进行管理 mutations 
      state,
      actions,
      mutations,
    })
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    mapMutations 【辅助函数】

    说明:如果在 Action 中没有业务逻辑处理,则可以不需要在 Action 中触发 mutations ,可以在组件中,直接触发对话 mutations ,把 mutations 中的函数,映射到 methods中

    <button @click="add(100)">+</button>
    <button @click="ADD(100)">+</button>
    <button @click="newsum(100)">+</button>
    methods: {    
          add() {   //默认写法
              this.$store.commit("ADD", this.num); //在组件中,直接触发  Mutation 
          },
          //mapMutations 数组 写法
        ...mapMutations(["ADD"]);  //可以通过  mapMutations 自动生成回调,使用数组 写法时,需保证 指定 事件名,和 Mutation 中的关联事件名一致。
        // 对象写法,key 为 指定事件名,value 为 关联事件名。  mapMutations  生成事件身上,默认可以接收一个参数,在调用事件时,可以传递参数。
        ...mapMutations({
                newsum: "ADD",
            }),
      },
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    注意:如果在 mutations 中 更改数据时,用到了,外部传入的值, 那么在 mapMutations 生成的事件 调用时,必须要传入一个值,不然会把一个事件对象当成参数传递过去。

    Getter (数据处理加工)

    getters 的作用

    当需要对store 中的数据进行加工处理时,可以使用 getters 可以认为是 store 的计算属性

    let getters = {
      machining(state) {   //Getter 接受 state 作为其第一个参数
        return state.numberdata * 100;    //返回被处理过后的数据。
      }
    }
    
    const store = new Vuex.Store({    
      state,
      actions,
      mutations,
      getters,             //挂载到 store
    })
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    组件中读取数据时

     <h1>{{ $store.getters.machining}}</h1>
    
    • 1

    mapGetters

    同上, mapGetters 使用和 mapState 同理

    Module (模块化)

    概述:由于使用单一状态树,应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时,store 对象就有可能变得相当臃肿。为了解决以上问题,Vuex 允许我们将 store 分割成模块(module)。每个模块拥有自己的 state、mutation、action、getter、甚至是嵌套子模块——从上至下进行同样方式的分割

    分离模块化

    State, Actions, Mutations, Getters 按照不同的业务分类,给分别抽离出去,为了防止,多模块之间的状态污染,需要在自己对应的状态中,开启一个命名空间

    export default {
        namespaced: true,  //开启命名空间
        state: {
            numberdata: 0,
            dataname: "store中的数据"
        },
        actions: {
            increase(mentet, datnum) {
                mentet.commit("ADD", datnum)
            }
        },
        mutations: {
            ADD(a, b) {
                a.numberdata += b;
            }
        },
        getters: {
            machining(state) {
                return state.numberdata * 100;
            }
        },
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    配置模块化

    import Vue from 'vue'
    import Vuex from 'vuex'
    import Case from './modules/case';//再引入抽离出去的状态,
    Vue.use(Vuex)
    const store = new Vuex.Store({
      modules: {                 //并把引入的 状态放到  modules下,进行 模块化托管
        Case
      }
    })
    export default store
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    页面中使用模块化

    
    //方法一:在 mapState, mapActions, mapMutations, mapGetters ,方法调用中,第一个参数,就可以指定,我们需要访问哪个模块下的数据状态,为String 
    <script>  
    import { mapState, mapActions, mapMutations, mapGetters } from "vuex";
    export default {
        computed: {
            ...mapState("Case", {
                sum: "numberdata",
                name: "dataname",
            }),
            ...mapState("Case", ["dataname", "numberdata"]),
            ...mapGetters("Case", ["machining"]),
        },
        methods: {
            ...mapActions("Case", ["increase"]),
            ...mapActions("Case", { add: "increase" }),
    
            ...mapMutations("Case", {
                newsum: "ADD",
            }),
        },
    };
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    <script>
    //使用 createNamespacedHelpers 创建基于某个命名空间辅助函数。它返回一个对象,对象里有新的绑定在给定命名空间值上的组件绑定辅助函数
    import { createNamespacedHelpers } from "vuex";
    const { mapState, mapActions, mapMutations, mapGetters } =
        createNamespacedHelpers("Case");  //createNamespacedHelpers 函数调用,传入一个参数用来指定绑定哪个模块,然后能从返回值身上结构,拿到指定当前模块下的,辅助函数,
    
    export default {
        computed: {
            ...mapState({   //同理,由于 使用了 createNamespacedHelpers ,所以这里的,辅助函数,不用再传入第一个,指定模块参数了。
                sum: "numberdata",
                name: "dataname",
            }),
            ...mapState(["dataname", "numberdata"]),
            ...mapGetters(["machining"]),
        },
        methods: {
            ...mapActions(["increase"]),
            ...mapActions({ add: "increase" }),
    
            ...mapMutations({
                newsum: "ADD",
            }),
        },
    };
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25

    补充:

    开启模块化+命名空间后,在组件中如果不使用辅助函数,用默认方式读取,修改状态时,有些许变化。

      computed: {
            sum(){    // 读取 模块下的state 中的数据
                return this.$store.state.Case.numberdata
            },
             name() {  //读取getters 中的数据
                return this.$store.getters["Case/machining"];
            },
        },
        methods: {
            newsum() {    //触发 actions
                this.$store.dispatch("Case/increase", 300);
            },
            add() {       //触发 mutations
                this.$store.commit("Case/ADD", 700);
            },
        },
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    总结

    其实 Vuex 一直都在围绕着 数据的 “共享” 一词展开,官方的 api 封装 已较完善;官方也比较推荐模块化开发,使得代码可维护性大大提高。

  • 相关阅读:
    北京有什么好的创业孵化器?中移产孵中心助创业
    代码插桩技术
    Spring 定时任务如何到达某一指定时间点后,触发任务机制
    qt day3
    蓝桥等考C++组别八级002
    在Ubuntu上安装并运行DeepProbLog的简单过程
    CentOS7连接主机java.net.ConnectException: Connection t,和 Linux 系统,出现“不在sudoers文件中,此事将被报告”的解决方法
    【leetcode】【2022/8/28】793. 阶乘函数后 K 个零
    Com插件开发-CDR插件-自动化接口-IDispatch接口-原理解析
    L1-095 分寝室(PTA)
  • 原文地址:https://blog.csdn.net/qq_60961397/article/details/127608214