-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
https://blog.jamchenjun.com/2023/02/16/understanding-react/
React 从 v16 开始逐步引入异步可中断的渲染架构。 React 渲染过程可以分为三个阶段 Scheduling、Reconciliation、Commit。 Scheduling 阶段执行任务调度,Reconciliation 阶段更新虚拟 DOM,本文主要讲述这两个阶段。(Commit 阶段更新 UI。e.g. 在浏览器环境中更新 DOM、在移动端环境中更新 Native 视图。) 本文