为了账号安全,请及时绑定邮箱和手机立即绑定

【备战春招】第12天 6-20 什么是PatchFlag

标签:
Vue.js

课程章节:6-20 什么是PatchFlag

课程讲师: 双越

课程内容:

6-20 什么是PatchFlag

课程收获:

patchFlag 是在编译 template 模板时,给 vnode 添加的一个标识信息,这个标识信息反映了 vnode 的哪些部位绑定了动态值,这样在 runtime 阶段,可以根据 patchFlag 判断出哪些内容需要更新,实现靶向更新

export function h(type: any, propsOrChildren?: any, children?: any): VNode {
  if (arguments.length === 2) {
    if (isObject(propsOrChildren) && !isArray(propsOrChildren)) {
      // single vnode without props
      if (isVNode(propsOrChildren)) {
        return createVNode(type, null, [propsOrChildren]);
      }
      // props without children
      return createVNode(type, propsOrChildren);
    } else {
      // omit props
      return createVNode(type, null, propsOrChildren);
    }
  } else {
    if (isVNode(children)) {
      children = [children];
    }
    return createVNode(type, propsOrChildren, children);
  }
}

图片描述

谢谢老师,讲的非常细致,很容易懂。这一节学的是什么是PatchFlag,为以后的学习打下了基础。
原来vue3能有这么多种性质,以及对vue3有了新的认识,期待后边的学习

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消