エラーの処理方法
エラーは、予期されるエラーとキャッチされない例外の2つのカテゴリに分けられます。このページでは、Next.jsアプリケーションでこれらのエラーをどのように処理するかを説明します。
予期されるエラーの処理
予期されるエラーは、アプリケーションの通常の操作中に発生する可能性のあるエラーで、サーバーサイドのフォームバリデーションや失敗したリクエストからのエラーなどがあります。これらのエラーは明示的に処理し、クライアントに返す必要があります。
Server Actions
useActionState
フックを使用して、Server Functionsの状態を管理し、予期されるエラーを処理できます。予期されるエラーにはtry
/catch
ブロックを使用しないでください。代わりに、予期されるエラーをスローされた例外ではなく、戻り値としてモデル化できます。
- TypeScript
- JavaScript
'use server'
export async function createPost(prevState: any, formData: FormData) {
const title = formData.get('title')
const content = formData.get('content')
const res = await fetch('https://api.vercel.app/posts', {
method: 'POST',
body: { title, content },
})
const json = await res.json()
if (!res.ok) {
return { message: 'Failed to create post' }
}
}
'use server'
export async function createPost(prevState, formData) {
const title = formData.get('title')
const content = formData.get('content')
const res = await fetch('https://api.vercel.app/posts', {
method: 'POST',
body: { title, content },
})
const json = await res.json()
if (!res.ok) {
return { message: 'Failed to create post' }
}
}
次に、アクションをuseActionState
フックに渡し、返されたstate
を使用してエラーメッセージを表示できます。
- TypeScript
- JavaScript
'use client'
import { useActionState } from 'react'
import { createPost } from '@/app/actions'
const initialState = {
message: '',
}
export function Form() {
const [state, formAction, pending] = useActionState(createPost, initialState)
return (
<form action={formAction}>
<label htmlFor="title">Title</label>
<input type="text" id="title" name="title" required />
<label htmlFor="content">Content</label>
<textarea id="content" name="content" required />
{state?.message && <p aria-live="polite">{state.message}</p>}
<button disabled={pending}>Create Post</button>
</form>
)
}
'use client'
import { useActionState } from 'react'
import { createPost } from '@/app/actions'
const initialState = {
message: '',
}
export function Form() {
const [state, formAction, pending] = useActionState(createPost, initialState)
return (
<form action={formAction}>
<label htmlFor="title">Title</label>
<input type="text" id="title" name="title" required />
<label htmlFor="content">Content</label>
<textarea id="content" name="content" required />
{state?.message && <p aria-live="polite">{state.message}</p>}
<button disabled={pending}>Create Post</button>
</form>
)
}
Server Components
Server Component内でデータを取得する際、レスポンスを使用してエラーメッセージを条件付きでレンダリングしたり、redirect
を使用したりできます。
- TypeScript
- JavaScript
export default async function Page() {
const res = await fetch(`https://...`)
const data = await res.json()
if (!res.ok) {
return 'There was an error.'
}
return '...'
}
export default async function Page() {
const res = await fetch(`https://...`)
const data = await res.json()
if (!res.ok) {
return 'There was an error.'
}
return '...'
}
Not found
ルートセグメント内でnotFound
関数を呼び出し、not-found.js
ファイルを使用して404 UIを表示できます。
- TypeScript
- JavaScript
import { getPostBySlug } from '@/lib/posts'
export default function Page({ params }: { params: { slug: string } }) {
const post = getPostBySlug(params.slug)
if (!post) {
notFound()
}
return <div>{post.title}</div>
}
import { getPostBySlug } from '@/lib/posts'
export default function Page({ params }) {
const post = getPostBySlug(params.slug)
if (!post) {
notFound()
}
return <div>{post.title}</div>
}
- TypeScript
- JavaScript
export default function NotFound() {
return <div>404 - Page Not Found</div>
}
export default function NotFound() {
return <div>404 - Page Not Found</div>
}
キャッチされない例外の処理
キャッチされない例外は、アプリケーションの通常のフロー中に発生すべきではないバグや問題を示す予期しないエラーです。これらはエラーをスローすることで処理され、その後、error boundaryによってキャッチされます。
ネストされたerror boundary
Next.jsはキャッチされない例外を処理するためにerror boundaryを使用します。error boundaryは子コンポーネント内のエラーをキャッチし、クラッシュしたコンポーネントツリーの代わりにフォールバックUIを表示します。
ルートセグメント内にerror.js
ファイルを追加し、Reactコンポーネントをエクスポートすることでerror boundaryを作成します:
- TypeScript
- JavaScript
'use client' // Error boundaries must be Client Components
import { useEffect } from 'react'
export default function Error({
error,
reset,
}: {
error: Error & { digest?: string }
reset: () => void
}) {
useEffect(() => {
// エラーをエラーレポートサービスにログする
console.error(error)
}, [error])
return (
<div>
<h2>Something went wrong!</h2>
<button
onClick={
// セグメントを再レンダリングして回復を試みる
() => reset()
}
>
Try again
</button>
</div>
)
}
'use client' // Error boundaries must be Client Components
import { useEffect } from 'react'
export default function Error({ error, reset }) {
useEffect(() => {
// エラーをエラーレポートサービスにログする
console.error(error)
}, [error])
return (
<div>
<h2>Something went wrong!</h2>
<button
onClick={
// セグメントを再レンダリングして回復を試みる
() => reset()
}
>
Try again
</button>
</div>
)
}
エラーは最も近い親のerror boundaryまでバブルアップします。これにより、ルート階層の異なるレベルにerror.tsx
ファイルを配置することで、細かいエラー処理が可能になります。
グローバルエラー
あまり一般的ではありませんが、国際化を活用している場合でも、root レイアウトでglobal-error.js
ファイルを使用してエラーを処理できます。グローバルエラーUIは、アクティブなときにroot レイアウトまたはテンプレートを置き換えるため、独自の<html>
および<body>
タグを定義する必要があります。
- TypeScript
- JavaScript
'use client' // Error boundaries must be Client Components
export default function GlobalError({
error,
reset,
}: {
error: Error & { digest?: string }
reset: () => void
}) {
return (
// global-errorはhtmlとbodyタグを含める必要があります
<html>
<body>
<h2>Something went wrong!</h2>
<button onClick={() => reset()}>Try again</button>
</body>
</html>
)
}
'use client' // Error boundaries must be Client Components
export default function GlobalError({ error, reset }) {
return (
// global-errorはhtmlとbodyタグを含める必要があります
<html>
<body>
<h2>Something went wrong!</h2>
<button onClick={() => reset()}>Try again</button>
</body>
</html>
)
}