コンテンツへスキップ
Latchkey

Suspense Boundary とは?

suspense boundary は、非同期データや遅延読み込みされたコードを待つ間にサスペンドする可能性のある UI の領域を指定するラッパーです。その領域が準備できていない間、boundary は placeholder などの fallback をレンダリングします。周囲のコンテンツは、保留中の部分でブロックせず独立してレンダリングされます。

なぜ重要か

suspense boundary は streaming と段階的なレンダリングを可能にし、遅いデータセクションがページ全体を止めないようにします。適切に配置することで、ユーザーが最初に見る内容を制御できます。

よくある質問

What is Suspense boundary?
A suspense boundary is a wrapper that designates a region of the UI which may suspend while waiting for asynchronous data or lazily loaded code. While that region is not ready, the boundary renders a fallback such as a placeholder. The surrounding content renders independently rather than blocking on the pending part.
Why does Suspense boundary matter in CI/CD?
Suspense boundaries enable streaming and progressive rendering, so a slow data section does not hold up the whole page. Placing them well controls what users see first.

関連ガイド