Skip to content

React 是怎么渲染出页面的?

Posted on:2024年9月19日 at 01:27

React 渲染页面的过程主要包括以下几个步骤:

1. 创建虚拟 DOM

2. 渲染到真实 DOM

import ReactDOM from "react-dom";

ReactDOM.render(<MyComponent />, document.getElementById("root"));

3. 组件更新

4. Diff 算法

5. 更新真实 DOM

6. 生命周期方法

7. 批处理更新

8. 异步渲染

原文转自:https://fe.ecool.fun/topic/3be464fd-88db-4533-b10b-c8accc872e50