1
0
Fork 0
Browse Source

vault backup: 2022-04-13 11:05:32

master
YuJian 3 years ago
parent
commit
ff42c75b2b
  1. 2
      自顶向下学 React 源码/React 源码的碎片记录.md

2
自顶向下学 React 源码/React 源码的碎片记录.md

@ -19,4 +19,4 @@
- Host Components 会进入 updateHostComponent 逻辑,在 React 1 是 updateHostComponent$1 - Host Components 会进入 updateHostComponent 逻辑,在 React 1 是 updateHostComponent$1
- updateHostComponent 方法中的 reconcileChildren 方法会为当前 Fiber 节点创建它的子 Fiber 节点,也就是 Fiber 中的 child 属性 - updateHostComponent 方法中的 reconcileChildren 方法会为当前 Fiber 节点创建它的子 Fiber 节点,也就是 Fiber 中的 child 属性
- reconcileChildren 方法接受 current 参数,通过判断这个参数是否为 null,分别执行 mountChildFibers 或 reconcileChildFibers 方法 - reconcileChildren 方法接受 current 参数,通过判断这个参数是否为 null,分别执行 mountChildFibers 或 reconcileChildFibers 方法
- mountChildFibers 和 reconcileChildFibers 最终都会调用 ChildReconciler 方法,只是传入的布尔值会不同,而这个参数表示是否追踪副作用 - mountChildFibers 和 reconcileChildFibers 都是由 ChildReconciler 方法创建的,只是传入的布尔值会不同,而这个参数表示是否追踪副作用,mountChildFibers 为 false,reconcileChildFibers则相反
Loading…
Cancel
Save