React hook form을 통해서 onValid 된 data를 fetch를 통해서 pages / users / enter.tsx에 요청을 보냈다.
const onValid = (data: EnterForm) => {
// console.log(JSON.stringify(data));
fetch("/api/users/enter", {
method: "POST",
body: JSON.stringify(data),
headers: {
"Content-Type": "application/json",
},
});
};
이 때 headers에 적힌 "Content-Type" : "application/json"문장이 없으면 enter.tsx에서 req즉 request의 body에 접근했을 때 undefiend가 출력되는 것을 확인할 수 있었는데 이 문제를 해결 하기 위해서는 "Content-Type" : "application/json" 이 옵션이 headers에 추가되어야 한다는 점을 알 수 있었다.
enter.tsx
import client from "@/libs/client";
import { NextApiRequest, NextApiResponse } from "next";
export default async function handler(
req: NextApiRequest,
res: NextApiResponse
) {
console.log(req.body.email);
res.status(200).end();
}
'지식 정리 📝' 카테고리의 다른 글
Chrome에서 JSON Data 예쁘게 확인하는 법 (0) | 2024.02.04 |
---|---|
Twilio Test Message Error (0) | 2024.01.23 |
React Hook Form With Next.Js Test (0) | 2024.01.14 |
Mui DatePicker 키보드 Event PreventDefault 하기 (0) | 2024.01.12 |
Prisma CLI 모음 (0) | 2024.01.12 |