그럴듯한 개발 블로그
article thumbnail
nextjs mongoDB id 서버컴포넌트에서 클라이언트 컴포넌트로 안보내짐
<frontend>/next.js 2023. 12. 21. 01:27

nextjs로 게시판 만들어보고 있는데 기가 막힌 상황이 생겼다. // server component export default async function List() { let db = (await connectDB).db("noticedb"); let result = await db.collection("post").find().toArray(); return ( ); } // client component export default function ListItem({ result }) { // console.log(result); return ( {result.map((value, index) => { return ( {value.title} 🔧 { fetch("/api/post/delete", {..