"Content-type": "application/json"
을 안쓰면 생기는 문제!
- Next의 req.body는 req의 인코딩을 기준으로 인코딩된다.
- 따라서 json 타입 인코딩을 해주지 않는다면 req.body안의 데이터를 접근할 수 없게 된다.
Next에서는 직접 method의 타입을 체크해야 한다.
- 모든 API에 작성할 수 없기에 util를 사용하자.
여러 method를 허락하려한다면 ?
withHandler({
methods: ["GET", "POST"],
handler,
})
type method = "GET" | "POST" | "DELETE";
interface ConfigType {
methods: method[];
handler: (req: NextApiRequest, res: NextApiResponse) => void;
isPrivate?: boolean;
}
export default function withHandler({
methods,
isPrivate = true,
handler,
}: ConfigType) {
return async function (
req: NextApiRequest,
res: NextApiResponse
): Promise<any> {
if (req.method && !methods.includes(req.method as any)) {
return res.status(405).end();
}
//...
};
}