博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue源码分析系列之响应式数据(四)
阅读量:6582 次
发布时间:2019-06-24

本文共 3849 字,大约阅读时间需要 12 分钟。

前言

上一节着重讲述了initComputed中的代码,以及数据是如何从computed中到视图层的,以及data修改后如何作用于computed。这一节主要记录initWatcher中的内容。

正文

demo修改

之前的new Vue(options)的options中,我们可以观察到computed,data,但是对于watch是没法演示的,所以我们在代码中加入一段可以观察到watch初始化以及效果的代码。

{  watch: {    a(newV,oldV) {      console.log(`${oldV} -> ${newV}`);    }  }}

依旧是观察a这个变量,当点击+1按钮时候,即可让a变化。

入口

if (opts.watch && opts.watch !== nativeWatch) {  initWatch(vm, opts.watch);}

initWatch

function initWatch (vm: Component, watch: Object) {  for (const key in watch) {    // 拿到watch中相关的处理逻辑    const handler = watch[key]    // 如果是个数组,就挨个创建watcher    if (Array.isArray(handler)) {      for (let i = 0; i < handler.length; i++) {        createWatcher(vm, key, handler[i])      }    } else {      // 否则直接初始化,我们此次例子中会直接走这里      // createWatcher(vm, a, fn)      createWatcher(vm, key, handler)    }  }}

createWatcher

function createWatcher (  vm: Component,  keyOrFn: string | Function,  handler: any,  options?: Object) {  // 这里只是对不同创建形式的标准化。  if (isPlainObject(handler)) {    options = handler    handler = handler.handler  }  if (typeof handler === 'string') {    handler = vm[handler]  }  // 最终这里是真正监听值变化的地方。  // $watch(a, handle, undefined);  return vm.$watch(keyOrFn, handler, options)}

vm.$watch

Vue.prototype.$watch = function (    expOrFn: string | Function,    cb: any,    options?: Object  ): Function {    const vm: Component = this    if (isPlainObject(cb)) {      return createWatcher(vm, expOrFn, cb, options)    }    options = options || {}    options.user = true    // 主要是这里创建一个观察者    // new Watcher(vm, 'a', handle, {user: true})    const watcher = new Watcher(vm, expOrFn, cb, options)    if (options.immediate) {      cb.call(vm, watcher.value)    }    return function unwatchFn () {      watcher.teardown()    }  }

new Watcher

watcher,即观察者,是我们多次提到的一个东西。这里主要强调的是watcher.get()中的内容。

class Watcher {  constructor (    vm: Component,    expOrFn: string | Function,    cb: Function,    options?: Object  ) {    // 一堆初始化信息    if (options) {      this.deep = !!options.deep      this.user = !!options.user      this.lazy = !!options.lazy      this.sync = !!options.sync    } else {      this.deep = this.user = this.lazy = this.sync = false    }    this.value = this.lazy      ? undefined      : this.get()  }  get () {    // 将当前watcher设为Dep.target方便后面访问a的getter时候,    // 设定为a的依赖    pushTarget(this)    let value    const vm = this.vm    try {      // 求a的值。并把当前watcher加入a的依赖中。      value = this.getter.call(vm, vm)    } catch (e) {      if (this.user) {        handleError(e, vm, `getter for watcher "${this.expression}"`)      } else {        throw e      }    } finally {      // "touch" every property so they are all tracked as      // dependencies for deep watching      if (this.deep) {        traverse(value)      }      popTarget()      this.cleanupDeps()    }    return value  }}

run watcher

到上一步,监听a的watcher已经初始化完毕了,当a因为点击鼠标变化时候,会触发这个watcher的变化。执行watcher的run方法,我们继续来看下run方法里的内容。

class Watcher {  run () {    if (this.active) {      // 求a的最新值。      const value = this.get()      if (        value !== this.value ||        // Deep watchers and watchers on Object/Arrays should fire even        // when the value is the same, because the value may        // have mutated.        isObject(value) ||        this.deep      ) {        // 当a变的时候,将旧值赋给oldValue。        const oldValue = this.value        // this.value赋予最新的值。        this.value = value        // 用户定义的watch调用时加入try,catch。        if (this.user) {          try {            // 执行当时传入的回调,并将新值与旧值一并传入。            this.cb.call(this.vm, value, oldValue)          } catch (e) {            handleError(e, this.vm, `callback for watcher "${this.expression}"`)          }        } else {          this.cb.call(this.vm, value, oldValue)        }      }    }  }}

总结

至此,watch,监听属性的这一部分已经完结,本质上就是对于每个监听的属性,创建一个watcher。当watcher改变时候,会触发开发者定义的回调。通过前两篇文章的学习,这篇应该算是很理解的内容。

文章链接

转载地址:http://jnino.baihongyu.com/

你可能感兴趣的文章
mac上安装consolas字体
查看>>
对向量、矩阵求导
查看>>
各版本linux下载地址大全
查看>>
CentOS 6.X 关闭不需要的 TTY 方法
查看>>
我的友情链接
查看>>
分区技术学习一
查看>>
Juniper 高级选项
查看>>
编程能力的四种境界
查看>>
编译安装mysql
查看>>
在windows上秒开应用程序
查看>>
【20180611】MySQL OOM
查看>>
memcached
查看>>
Python面向对象编程(一)
查看>>
决心书
查看>>
如何把图片上的文字转换成word?
查看>>
7z命令行
查看>>
C语言编程实现 输入一个非负整数,返回组成它的数字之和(递归方法)
查看>>
c3p0
查看>>
redis cluster 集群搭建(增、删、改、查) :5.0.2
查看>>
我的友情链接
查看>>