Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ function ProfilePage() {
}
```

If an error happens in the `Posts` component or somewhere inside it, React will [try to recover from it:](/reference/react/Suspense#providing-a-fallback-for-server-errors-and-client-only-content)
如果 `Posts` 组件或其内部发生错误,React 会 [尝试进行恢复](/reference/react/Suspense#providing-a-fallback-for-server-errors-and-client-only-content)

1. 它将为最近的 `<Suspense>` 边界(`PostsGlimmer`)触发加载中的后备方案到 HTML。
2. 它将 **放弃** 再尝试在服务器上渲染 `Posts`。
Expand Down