Skip to content

Commit

Permalink
fix: Profiler modify endTime to commitTime
Browse files Browse the repository at this point in the history
  • Loading branch information
YSZ0927 committed Sep 5, 2023
1 parent 4e799d2 commit 636d682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/reference/react/Profiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function onRender(id, phase, actualDuration, baseDuration, startTime, commitTime
* `actualDuration`:在此次更新中,渲染 `<Profiler>` 组件树的毫秒数。这可以显示子树在使用记忆化(例如 [`memo`](/reference/react/memo)[`useMemo`](/reference/react/useMemo))后的效果如何。理想情况下,此值在挂载后应显著减少,因为许多后代组件只会在特定的 props 变化时重新渲染。
* `baseDuration`:估算在没有任何优化的情况下重新渲染整棵 `<Profiler>` 子树所需的毫秒数。它通过累加树中每个组件的最近一次渲染持续时间来计算。此值估计了渲染的最差情况成本(例如初始挂载或没有使用记忆化的树)。将其与 `actualDuration` 进行比较,以确定记忆化是否起作用。
* `startTime`:当 React 开始渲染此次更新时的时间戳。
* `endTime`:当 React 提交此次更新时的时间戳。此值在提交的所有 profiler 中共享,如果需要,可以对它们进行分组。
* `commitTime`:当 React 提交此次更新时的时间戳。此值在提交的所有 profiler 中共享,如果需要,可以对它们进行分组。

---

Expand Down

0 comments on commit 636d682

Please sign in to comment.