Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: サンプルコード内のタイポ修正 #327

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions docs/api-routes/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ API ルートは Next.js で**API**を構築する方法を提供しています
例えば、以下の API ルート `pages/api/user.js` は `json` レスポンスを `200` ステータスコードとともに返します:

```js
export default function handler(req, res) => {
export default function handler(req, res) {
res.status(200).json({ name: 'John Doe' })
};
```
Expand All @@ -35,7 +35,7 @@ API ルートを使用するためには、関数(**リクエストハンドラ*
API ルートで異なる HTTP メソッドを処理するには、次のようにリクエストハンドラの `req.method` を使うことができます:

```js
export default function handler(req, res) => {
export default function handler(req, res) {
if (req.method === 'POST') {
// POSTリクエストを処理します
} else {
Expand Down