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

本文共 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://pjkix.baihongyu.com/

你可能感兴趣的文章
深入理解javascript对象系列第一篇——初识对象
查看>>
Redis_master-slave模式
查看>>
qemu安装
查看>>
多媒体开发之rtmp---rtmp client 端的实现
查看>>
3.使用Maven构建Web项目
查看>>
iView实现自定义Modal
查看>>
如何在云帮上配置https
查看>>
JQuery干货篇之插入元素
查看>>
Imperva开源域目录控制器,简化活动目录集成
查看>>
可观察性驱动开发,探索未知之地
查看>>
Webpack构建兼容IE8
查看>>
Deis发布1.4版本,支持Microsoft Azure
查看>>
解读2016之Golang篇:极速提升,逐步超越
查看>>
原创:新手布局福音!微信小程序使用flex的一些基础样式属性(二)
查看>>
Swift 烧脑体操(二) - 函数的参数
查看>>
用Elm语言降低失败的风险
查看>>
荷兰商业银行使用精益领导力推行改进
查看>>
cisco 多生成树MST笔记
查看>>
FPGA设计——图像处理(锐化增强)
查看>>
LINUX REDHAT第十三单元练习题
查看>>