快速刷新(Fast Refresh)是 Next.js 的一项功能,当你编辑 React 组件时,可以为你提供即时的反馈。 默认情况下,快速刷新(Fast Refresh)功能在所有 Next.js 9.4 或更新版本 的应用程序中是开启的。启用 Next.js 的快速刷新(Fast Refresh)后, 大多数编辑器应该在一秒钟内就可以感知到了,并且不会丢失组件的 状态。
Button.js
and Modal.js
import theme.js
, editing theme.js
will update
both components.如果在开发过程中出现语法错误,你可以对其进行修复并再次保存该文件。 该错误将会自动消失,因此你无需重新加载该应用程序。 你不会丢失组件状态。
如果你犯的错误导致组件内部出现运行时错误,If you make a mistake that leads to a runtime error inside your component, you'll be greeted with a contextual overlay. Fixing the error will automatically dismiss the overlay, without reloading the app.
如果在渲染过程中未发生错误,则组件状态将被保留。如果 在渲染过程中发生了错误,则 React 将使用更新后的代码重新 mount 你的 应用程序。
If you have error boundaries in your app (which is a good idea for graceful failures in production), they will retry rendering on the next edit after a rendering error. This means having an error boundary can prevent you from always getting reset to the root app state. However, keep in mind that error boundaries shouldn't be too granular. They are used by React in production, and should always be designed intentionally.
Fast Refresh tries to preserve local React state in the component you're editing, but only if it's safe to do so. Here's a few reasons why you might see local state being reset on every edit to a file:
HOC(WrappedComponent)
. If the returned component is a
class, state will be reset.export default () => <div />;
cause Fast Refresh to not preserve local component state. For large codebases you can use our name-default-component
codemod.As more of your codebase moves to function components and Hooks, you can expect state to be preserved in more cases.
// @refresh reset
anywhere in the file you're editing. This directive is local to the file, and
instructs Fast Refresh to remount components defined in that file on every
edit.console.log
or debugger;
into the components you edit during
development.When possible, Fast Refresh attempts to preserve the state of your component
between edits. In particular, useState
and useRef
preserve their previous
values as long as you don't change their arguments or the order of the Hook
calls.
Hooks with dependencies—such as useEffect
, useMemo
, and useCallback
—will
always update during Fast Refresh. Their list of dependencies will be ignored
while Fast Refresh is happening.
For example, when you edit useMemo(() => x * 2, [x])
to
useMemo(() => x * 10, [x])
, it will re-run even though x
(the dependency)
has not changed. If React didn't do that, your edit wouldn't reflect on the
screen!
Sometimes, this can lead to unexpected results. For example, even a useEffect
with an empty array of dependencies would still re-run once during Fast Refresh.
However, writing code resilient to occasional re-running of useEffect
is a good practice even
without Fast Refresh. It will make it easier for you to introduce new dependencies to it later on
and it's enforced by React Strict Mode,
which we highly recommend enabling.