Skip to content

Commit

Permalink
Merge pull request ascoders#230 from Jack-Lo/v2
Browse files Browse the repository at this point in the history
笔误修正
  • Loading branch information
ascoders authored Jan 22, 2020
2 parents d3dad3b + ac53e3a commit f573e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 096.精读《useEffect 完全指南》.md
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ function Article({ id }) {

## useEffect 还有什么优势

`useEffect` 在渲染结束时执行,所以不会阻塞浏览器渲染进程,所以使用 Function Component 写的项目一般都有用更好的性能
`useEffect` 在渲染结束时执行,所以不会阻塞浏览器渲染进程,所以使用 Function Component 写的项目一般都拥有更好的性能

自然符合 React Fiber 的理念,因为 Fiber 会根据情况暂停或插队执行不同组件的 Render,如果代码遵循了 Capture Value 的特性,在 Fiber 环境下会保证值的安全访问,同时弱化生命周期也能解决中断执行时带来的问题。

Expand Down

0 comments on commit f573e16

Please sign in to comment.