内容简介:采用集中式存储管理应用的所有组件的状态, 就能实现组件间数据共享逻辑图从图上有两条线:
采用集中式存储管理应用的所有组件的状态, 就能实现组件间数据共享
实现
逻辑图
从图上有两条线: Vue.use(vuec)
, 与 new Vuec.center(options)
第一条线 Vue.use(vuec)
安装插件
使用 Vue.use(vuec)
时, 会执行 vuec
的 install
方法,会注入参数 Vue
所以 vuec
是这样的,
// index.js import {Center, install} from './center' export default {Center, install} 复制代码
Center
对象将实例化成 center
(下面再说),我们先看看 install
方法
// center.js let Vue // 全局变量, 保存install里的Vue export function install (_Vue) { if (!Vue) { _Vue.mixin({ beforeCreate: applyMixin // 在beforeCreate钩子上混入applyMixin函数 }) } Vue = _Vue } 复制代码
install
在 Vue
原型的 beforeCreate
混入 applyMixin
函数, 也就是说在生成每个 Vue
组件时,在它的生命周期 beforeCreate
钩子上就会执行 applyMixin
方法
第二条线 new Vuec.center(options)
实例化 Center
对象
先看看用户传入的 options
, 下面例子
export default new Vuec.Center({ state: { name: 'liuyang' }, mutations: { changeName (state) { state.name = 'jike' } } }) 复制代码
上面代码会生成 center
实例, 该实例上应该包括: state
状态, commit
方法提交变更等
// center.js export class Center { constructor (options= {}) { let center = this this.mutations = options.mutations observeState(center, options.state) } get state () { // 代理了this.$center.state的最终访问值 return this._vm.$data.$$state } commit (_type, _payload) { this.mutations[_type](this.state, _payload) } } function observeState(center, state) { // 响应式state center._vm = new Vue({ data: { $$state: state } }) } 复制代码
在执行 new Vuec.Center({..})
时,就是执行 Center
的构造函数
-
首先执行
let center = this
, 定义center
保存当前实例 -
接着执行
this.mutations = options.mutations
, 在实例center
上添加mutations
属性, 值就是用户输入mutations
,按上面例子,
this.mutations
长成这样this.mutations = { changeName (state) { state.name = 'jike' } } 复制代码
-
最后执行
observeState(center, options.state)
, 作用:让center
实例的state
属性指向options.state
并且是响应式的
function observeState(center, state) { // 响应式state center._vm = new Vue({ // 利用Vue的响应系统,将state转化成响应式 data: { $$state: state } }) } 复制代码
在 center
实例上添加 _vm
属性, 值是一个 Vue
实例, 在该 Vue
实例的 data
下定义了 $$state
, 它的值是 options.state
用户输入的 state
; 结合上面的这段代码
// center.js export class Center { ...省略 get state () { // 代理了this.$center.state的最终访问值 return this._vm.$data.$$state } ...省略 } 复制代码
所以我们在组件中访问 center.state
其实就是访问 center._vm.$data.$$state
OK, center
就构建好了
创建 Vue
组件
用户输入
import Vue from 'vue' import App from './App' import router from './router' import center from './center' new Vue({ el: '#app', router, center, // 构建好的center实例 template: '<App/>', components: {App} }) 复制代码
在 beforeCreate
生命周期时会触发上面混入的 applyMixin
函数
// mixins.js export default function applyMixin() { vuecInit.call(this) // } function vuecInit () { const options = this.$options // vue的实例化是从外往内, 所以父组件的$center一定是options的center this.$center = options.parent?options.parent.$center: options.center } 复制代码
applyMixin
里会执行 vuecInit.call(this)
, 这里的 this
指向当前组件的实例,
接着看 vuecInit
, 定义了 options
等于用户输入选项,因为先创建根组件, 所以根组件 this.$center
的值的引用就是我们在 new Vue({..center})
时传入的 center
实例, 下面所有组件都指向它
OK, 你就可以在组件里使用 this.$center
访问了
commit变更
// center.js export class Center { ... 省略 commit (_type, _payload) { this.mutations[_type](this.state, _payload) } } 复制代码
通常我们变更时: this.$center.commit('changeName', 'jike')
, 这样的话, this.mutations[_type]
就是对应方法函数, 往该函数里传入 state
以及 payload
,
举上面的例子
// this.mutations[_type] , _type = 'changeName', payload= 'jike' this.mutations = { changeName (state, payload) { state.name = payload } } 复制代码
说明
上面只是一个简单的状态管理, 还有很多地方没有实现: actions
异步变更, getters
函数, modules
模块分割, 辅助函数 mapState..
等
源码地址: github
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 13行代码实现状态管理工具
- 使用 pull app 保持 Fork 代码在最新状态
- Python获取CPU、内存使用率以及网络使用状态代码
- 无需If-Else语句,状态模式即可编写干净可维护的代码
- 一行代码搞定 Android平台React Native Modal 无法延伸到状态栏的问题
- javascript – 有可能使用angularJs将状态从状态传递到状态吗?
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Effective Modern C++
Scott Meyers / O'Reilly Media / 2014-12 / USD 49.99
Learn how to program expertly with C++ with this practical book from Scott Meyers, one of the world's foremost authorities on this systems programming language. Scott Meyers takes some of the most dif......一起来看看 《Effective Modern C++》 这本书的介绍吧!