|
|
@ -19,4 +19,5 @@ |
|
|
|
- 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 方法,只是传入的布尔值会不同 |
|
|
|
|
|
|
|
- ChildReconciler 方法的参数表示是否追踪副作用 |