文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

vuex中的Modules怎么使用

2023-06-30 04:50

关注

这篇文章主要介绍了vuex中的Modules怎么使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇vuex中的Modules怎么使用文章都会有所收获,下面我们一起来看看吧。

1 、什么是模块Modules

Vuex允许我们将store分割成模块(Module), 而每个模块拥有自己的state、getters、mutation、action等,甚至是嵌套子模块——从上至下进行同样方式的分割。

const moduleA = {        state: () => ({ ... }),        mutations: { ... },        actions: { ... },        getters: { ... }    }    const moduleB = {        state: () => ({ ... }),        mutations: { ... },        actions: { ... }    }    const store = new Vuex.Store({        modules: {            a: moduleA,            b: moduleB        }    })    this.store.state.a // -> 获得moduleA 的状态    this.store.state.b // -> 获得moduleB 的状态

内部state,模块内部的state是局部的,也就是模块私有的,

内部getter,mutation,action 仍然注册在全局命名空间内,这样使得多个模块能够对同一 mutation 或 action 作出响应。

2、模块内部参数问题

对于模块内部的 mutation 和 getter,接收的第一个参数是模块的局部状态对象 state。

对于模块内部的 action,局部状态通过 context.state 暴露出来,根节点状态则为 context.rootState:

对于模块内部的 getter,根节点状态会作为第三个参数暴露出来:

const moduleA = {        state: () => ({            count:"",        }),        actions: {            //这里的state为局部状态,rootState为根节点状态            incrementIfOddOnRootSum ({ state, commit, rootState }) {                if ((state.count + rootState.count) % 2 === 1) {                    commit('increment')                }            }        }        mutations: {            // 这里的 `state` 对象是模块的局部状态            increment (state) {                state.count++            }        },        getters: {            //这里的state为局部状态,rootState为根节点状态            doubleCount (state) {                return state.count * 2            },            sumWithRootCount (state, getters, rootState) {                return state.count + rootState.count            }        }    }

3、模块命名空间问题

(1)namespaced: true 使模块成为带命名空间的模块

当模块被注册后,它的所有 getter、action 及 mutation 都会自动根据模块注册的路径调整命名。

const store = new Vuex.Store({  modules: {    account: {      namespaced: true,      // 模块内容(module assets) 在使用模块内容(module assets)时不需要在同一模块内额外添加空间名前缀。      state: () => ({}), // 模块内的状态已经是嵌套的了,使用 `namespaced` 属性不会对其产生影响      getters: {        isAdmin() {}, // ->使用: getters['account/isAdmin'],        // 你可以使用 getter 的第四个参数来调用        someGetter(state, getters, rootState, rootGetters) {          // getters.isAdmin          // rootGetters.someOtherGetter        },      },      actions: {        login() {}, // ->使用: dispatch('account/login')        // 你可以使用 action 的第四个参数来调用        //若需要在全局命名空间内分发 action 或提交 mutation,将 { root: true } 作为第三参数传给 dispatch 或 commit 即可        someAction({ dispatch, commit, getters, rootGetters }) {          // getters.isAdmin;          // rootGetters.someGetter;          // dispatch("someOtherAction");          // dispatch("someOtherAction", null, { root: true });          // commit("someMutation");          // commit("someMutation", null, { root: true });        },        someOtherAction(ctx, payload) {},        // 若需要在带命名空间的模块注册全局 action,你可添加 root: true,并将这个 action 的定义放在函数 handler 中。        otherAction: {          root: true,          handler(namespacedContext, payload) {}, // -> 'someAction'        },      },      mutations: {        login() {}, // ->使用: commit('account/login')      },      // 嵌套模块      modules: {        // 继承父模块的命名空间        myPage: {          state: () => ({}),          getters: {            profile() {}, // -> 使用:getters['account/profile']          },        },        // 进一步嵌套命名空间        posts: {          namespaced: true,          state: () => ({}),          getters: {            popular() {}, // -> 使用:getters['account/posts/popular']          },        },      },    },  },});

(2)带命名空间的绑定函数的使用

当使用 mapState, mapGetters, mapActions 和 mapMutations 这些函数来绑定带命名空间的模块时,写起来可能比较繁琐:

computed: {            ...mapState({                a: state => state.some.nested.module.a,                b: state => state.some.nested.module.b            })        },        methods: {            ...mapActions([                'some/nested/module/foo', // -> this['some/nested/module/foo']()                'some/nested/module/bar' // -> this['some/nested/module/bar']()            ])        }

createNamespacedHelpers 创建基于某个命名空间辅助函数,它返回一个对象,对象里有新的绑定在给定命名空间值上的组件绑定辅助函数。

import { createNamespacedHelpers } from 'vuex'        const { mapState, mapActions } = createNamespacedHelpers('some/nested/module')        export default {            computed: {                // 在 `some/nested/module` 中查找                ...mapState({                a: state => state.a,                b: state => state.b                })            },            methods: {                // 在 `some/nested/module` 中查找                ...mapActions([                    'foo',                    'bar'                ])            }        }

4、模块动态注册

在 store 创建之后,你可以使用 store.registerModule 方法注册模块

import Vuex from 'vuex'        const store = new Vuex.Store({  })        // 注册模块 `myModule`        store.registerModule('myModule', {            // ...        })        // 注册嵌套模块 `nested/myModule`        store.registerModule(['nested', 'myModule'], {            // ...        })

之后就可以通过 store.state.myModule 和 store.state.nested.myModule 访问模块的状态。

也可以使用 store.unregisterModule(moduleName) 来动态卸载模块。注意,你不能使用此方法卸载静态模块(即创建 store 时声明的模块)。

可以通过 store.hasModule(moduleName) 方法检查该模块是否已经被注册到 store。

关于“vuex中的Modules怎么使用”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“vuex中的Modules怎么使用”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯