加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Vuex之理解Store的用法

发布时间:2020-12-17 02:59:53 所属栏目:百科 来源:网络整理
导读:1.什么是Store? 说了, Vuex 就是提供一个仓库, Store 仓库里面放了很多对象。其中state就是数据源存放地,对应于与一般 Vue 对象里面的 data (后面讲到的 actions 和 mutations 对应于 methods )。 在使用 Vuex 的时候通常会创建 Store 实例 new Vuex.s

1.什么是Store?

说了,Vuex就是提供一个仓库,Store仓库里面放了很多对象。其中state就是数据源存放地,对应于与一般Vue对象里面的data(后面讲到的actionsmutations对应于methods)。

在使用Vuex的时候通常会创建Store实例new Vuex.store({state,getters,mutations,actions})有很多子模块的时候还会使用到modules

总结,Store类就是存储数据和管理数据方法的仓库,实现方式是将数据和方法已对象形式传入其实例中。要注意一个应用或是项目中只能存在一个Store实例!!

2.Store源码分析

// 2.结构赋值拿到options里面的state,plugins和strict
const {
state = {},//rootState
plugins = [],// 插件
strict = false //是否严格模式
} = options

// 3.Store internal state创建store内部属性
this._options = options //存储参数
this._committing = false //标识提交状态,保证修改state只能在mutation里面,不能在外部随意修改
this._actions = Object.create(null) //存储用户定义的actions
this._mutations = Object.create(null) //存储用户定义的mutations
this._wrappedGetters = Object.create(null) //存储用户定义的getters
this._runtimeModules = Object.create(null) //存储运行时的modules
this._subscribers = [] //存储所有堵mutation变化的订阅者
this._watcherVM = new Vue() //借用Vue实例的方法,$watch来观测变化

// 4.将dispatch和commit的this指向当前store实例
const store = this
const { dispatch,commit } = this
this.dispatch = function boundDispatch (type,payload) {
return dispatch.call(store,type,payload)}
this.commit = function boundCommit (type,payload,options) {
return commit.call(store,options)}}

逐步分析每一个模块。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读