Skip to content

Commit

Permalink
fix:typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LiuL0703 authored Jul 21, 2019
1 parent a9d2c1d commit 68e6c23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 083.精读《React16 新特性》.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ Fiber 利用分片的思想,把一个耗时长的任务分成很多小片,
因此,在组件更新时有可能一个更新任务还没有完成,就被另一个更高优先级的更新过程打断,优先级高的更新任务会优先处理完,而低优先级更新任务所做的工作则会完全作废,然后等待机会重头再来。所以 React Fiber 把一个更新过程分为两个阶段:

- 第一个阶段 Reconciliation Phase,Fiber 会找出需要更新的 DOM,这个阶段是可以被打断的;
- 第二个阶段 Commit Phase,是无法别打断,完成 DOM 的更新并展示;
- 第二个阶段 Commit Phase,是无法被打断的,完成 DOM 的更新并展示;

在使用 Fiber 后,需要要检查与第一阶段相关的生命周期函数,避免逻辑的多次或重复调用:
在使用 Fiber 后,需要检查与第一阶段相关的生命周期函数,避免逻辑的多次或重复调用:

- componentWillMount
- componentWillReceiveProps
Expand Down

0 comments on commit 68e6c23

Please sign in to comment.