• VueX简单又详细的解读,看了就会用


    一、VueX是什么

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

    二、为什么要用VueX

            “单向数据流”理念的简单示意:

             当我们的应用遇到多个组件共享状态时,单向数据流的简洁性很容易被破坏:

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

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

            因此,我们为什么不把组件的共享状态抽取出来,以一个全局单例模式管理呢?在这种模式下,我们的组件树构成了一个巨大的“视图”,不管在树的哪个位置,任何组件都能获取状态或者触发行为!

            通过定义和隔离状态管理中的各种概念并通过强制规则维持视图和状态间的独立性,我们的代码将会变得更结构化且易维护。

    VueX由此诞生:

     三、VueX的五大模块

    (一)State:单一状态树

            Vuex 使用单一状态树——是的,用一个对象就包含了全部的应用层级状态。至此它便作为一个“唯一数据源 (SSOT)”而存在。这也意味着,每个应用将仅仅包含一个 store 实例。单一状态树让我们能够直接地定位任一特定的状态片段,在调试的过程中也能轻易地取得整个当前应用状态的快照。

            简单来说就是该项目中的所有状态都放在State中。

    1. import Vue from 'vue'
    2. import Vuex from 'vuex'
    3. Vue.use(Vuex)
    4. export default new Vuex.Store({
    5. state: {
    6. // 全局个人数据
    7. userInfo:{},
    8. isLogin:true,
    9. loading:false,
    10. tabActive:0
    11. },
    12. mutations: {
    13. },
    14. actions: {
    15. },
    16. modules: {
    17. }
    18. })

            在别的页面使用时的获取方式

    1.直接从store实例取值

             main.js中,把store注册在根实例下

    import store from './store'
        (1)在其他页面js中可使用this.$stroe.state.属性直接取值
    1. export default {
    2. computed: {
    3. testNum() {
    4. return this.$store.state.testNum;
    5. }
    6. }
    7. };

            (2)在其他页面的html中书写为$stroe.state.属性

    1. class="box" v-id="$store.state.isLogin">
    2. <MySelfHeader>MySelfHeader>
    3. <MySelfBody>MySelfBody>
  • 2.mapState 辅助函数

            当一个组件需要获取多个状态的时候,将这些状态都声明为计算属性会有些重复和冗余。为了解决这个问题,我们可以使用 mapState 辅助函数帮助我们生成计算属性.

        先引入   import {mapState} from "vuex";
    1. // 在单独构建的版本中辅助函数为 Vuex.mapState
    2. import { mapState } from 'vuex'
    3. export default {
    4. // ...
    5. computed: mapState({
    6. // 箭头函数可使代码更简练
    7. count: state => state.count,
    8. // 传字符串参数 'count' 等同于 `state => state.count`
    9. countAlias: 'count',
    10. // 为了能够使用 `this` 获取局部状态,必须使用常规函数
    11. countPlusLocalState (state) {
    12. return state.count + this.localCount
    13. }
    14. })
    15. }

            当映射的计算属性的名称与 state 的子节点名称相同时,我们也可以给 mapState 传一个字符串数组。

    1. computed: mapState([
    2. // 映射 this.count 为 store.state.count
    3. 'count'
    4. ])

    (二)Getter

            有时候我们需要从 store 中的 state 中派生出一些状态,例如对列表进行过滤并计数:

    1. computed: {
    2. doneTodosCount () {
    3. return this.$store.state.todos.filter(todo => todo.done).length
    4. }
    5. }

             Vuex 允许我们在 store 中定义“getter”(可以认为是 store 的计算属性)。

             Getter 接受 state 作为其第一个参数:

    1. const store = createStore({
    2. state: {
    3. todos: [
    4. { id: 1, text: '...', done: true },
    5. { id: 2, text: '...', done: false }
    6. ]
    7. },
    8. getters: {
    9. doneTodos (state) {
    10. return state.todos.filter(todo => todo.done)
    11. }
    12. }
    13. })

    在别的页面的获取方式:

            Js中:this.$store.getters.方法/属性

            html中:$store.getters.方法/属性

    (三)Mutation

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

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

             你不能直接调用一个 mutation 处理函数。这个选项更像是事件注册:“当触发一个类型为 increment 的 mutation 时,调用此函数。”要唤醒一个 mutation 处理函数,你需要以相应的 type 调用 store.commit 方法:

    store.commit('increment')

    提交载荷(Payload)

            你可以向 store.commit 传入额外的参数,即 mutation 的载荷(payload)

    1. mutations: {
    2. increment (state, payload) {
    3. state.count += payload.amount
    4. }
    5. }
    1. store.commit('increment', {
    2. amount: 10
    3. })

    注意:Mutation 必须是同步函数,不能再Mutation中进行异步操作

    ***在组件中提交 Mutation***

            你可以在组件中使用 this.$store.commit('xxx') 提交 mutation,或者使用 mapMutations 辅助函数将组件中的 methods 映射为 store.commit 调用(需要在根节点注入 store)。

    1. import { mapMutations } from 'vuex'
    2. export default {
    3. // ...
    4. methods: {
    5. ...mapMutations([
    6. 'increment', // 将 `this.increment()` 映射为 `this.$store.commit('increment')`
    7. // `mapMutations` 也支持载荷:
    8. 'incrementBy' // 将 `this.incrementBy(amount)` 映射为 `this.$store.commit('incrementBy', amount)`
    9. ]),
    10. ...mapMutations({
    11. add: 'increment' // 将 `this.add()` 映射为 `this.$store.commit('increment')`
    12. })
    13. }
    14. }

    重点:Mutation中的方法要通过commit来调用

    (四)Action

            某些情况我们希望在vuex中进行一些异步操作,比如网络请求,必然是异步的,那这个时候就需要用actions了。

    Action 类似于 mutation,不同在于:

    • Action 提交的是 mutation,而不是直接变更状态。
    • Action 可以包含任意异步操作。
    1. const store = createStore({
    2. state: {
    3. count: 0
    4. },
    5. mutations: {
    6. increment (state) {
    7. state.count++
    8. }
    9. },
    10. actions: {
    11. increment (context) {
    12. context.commit('increment')
    13. }
    14. }
    15. })

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

    分发 Action

            Action 通过 store.dispatch 方法触发:

    store.dispatch('increment')

            乍一眼看上去感觉多此一举,我们直接分发 mutation 岂不更方便?实际上并非如此,还记得 mutation 必须同步执行这个限制么?Action 就不受约束!我们可以在 action 内部执行异步操作:

    1. actions: {
    2. incrementAsync ({ commit }) {
    3. setTimeout(() => {
    4. commit('increment')
    5. }, 1000)
    6. }
    7. }

            Actions 支持同样的载荷方式和对象方式进行分发:

    1. // 以载荷形式分发
    2. store.dispatch('incrementAsync', {
    3. amount: 10
    4. })
    5. // 以对象形式分发
    6. store.dispatch({
    7. type: 'incrementAsync',
    8. amount: 10
    9. })

    ****在组件中分发 Action***

            你在组件中使用 this.$store.dispatch('xxx') 分发 action,或者使用 mapActions 辅助函数将组件的 methods 映射为 store.dispatch 调用(需要先在根节点注入 store):

    1. import { mapActions } from 'vuex'
    2. export default {
    3. // ...
    4. methods: {
    5. ...mapActions([
    6. 'increment', // 将 `this.increment()` 映射为 `this.$store.dispatch('increment')`
    7. // `mapActions` 也支持载荷:
    8. 'incrementBy' // 将 `this.incrementBy(amount)` 映射为 `this.$store.dispatch('incrementBy', amount)`
    9. ]),
    10. ...mapActions({
    11. add: 'increment' // 将 `this.add()` 映射为 `this.$store.dispatch('increment')`
    12. })
    13. }
    14. }

    (五)Module

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

            为了解决以上问题,Vuex 允许我们将 store 分割成模块(module)。每个模块拥有自己的 state、mutation、action、getter、甚至是嵌套子模块——从上至下进行同样方式的分割:

    1. const moduleA = {
    2. state: () => ({ ... }),
    3. mutations: { ... },
    4. actions: { ... },
    5. getters: { ... }
    6. }
    7. const moduleB = {
    8. state: () => ({ ... }),
    9. mutations: { ... },
    10. actions: { ... }
    11. }
    12. const store = createStore({
    13. modules: {
    14. a: moduleA,
    15. b: moduleB
    16. }
    17. })
    18. store.state.a // -> moduleA 的状态
    19. store.state.b // -> moduleB 的状态

    四、VueX的源码

    1. let Vue;
    2. //定义一个Store类
    3. class Store {
    4. constructor () {
    5. this._vm = new Vue({
    6. data: {
    7. $$state: this.state
    8. }
    9. })
    10. }
    11. commit (type, payload, _options) {
    12. const entry = this._mutations[type];
    13. entry.forEach(function commitIterator (handler) {
    14. handler(payload);
    15. });
    16. }
    17. dispatch (type, payload) {
    18. const entry = this._actions[type];
    19. return entry.length > 1
    20. ? Promise.all(entry.map(handler => handler(payload)))
    21. : entry[0](payload);
    22. }
    23. }
    24. //保证 vm 中都可以访问 store 对象
    25. function vuexInit () {
    26. const options = this.$options;
    27. if (options.store) {
    28. this.$store = options.store;
    29. } else {
    30. this.$store = options.parent.$store;
    31. }
    32. }
    33. //Vue.js 提供了一个 Vue.use 的方法来安装插件,内部会调用插件提供的 install 方法。所以我们的插件需要提供一个 install 方法来安装。
    34. export default install (_Vue) {
    35. Vue.mixin({ beforeCreate: vuexInit });
    36. Vue = _Vue;
    37. }

            更多详情请跳转官网——

    Vuex 是什么? | Vuex (vuejs.org)icon-default.png?t=M85Bhttps://vuex.vuejs.org/zh/

  • 相关阅读:
    splice 和 slice 会改变原数组吗? 怎么删除数组最后一个元素?
    使用Uiautomator2进行APP自动化测试
    “神经网络之父”和“深度学习鼻祖”Geoffrey Hinton
    开源日报 0821:帮你修复老旧照片
    深度学习 - 46.DIN 深度兴趣网络
    程序员缓解工作压力的一些方法
    AutoCAD插件实现帐号密码登录
    SSM - Springboot - MyBatis-Plus 全栈体系(二十)
    关于#数据结构#的问题,请各位专家解答!
    8.19 Day43---面试补充
  • 原文地址:https://blog.csdn.net/gkx19898993699/article/details/128166015