보조기억장치

NextJS 13.4 Server Actions 사용 본문

React

NextJS 13.4 Server Actions 사용

캐세이 2023. 5. 14. 10:16

사용

async function addTodo(data: FormData) {
    "use server";
    const todo = data.get("todo") as string;
  }

 

플래그 활성화 - next.config.js
  experimental: {
    serverActions: true,
  },

 

비 활성화시 error Server Actions require `experimental.serverActions` option 에러 발생

 

 

 

 

'React' 카테고리의 다른 글

캐러셀(Carousel) 적용해보기  (0) 2023.09.14
Prisma 설치  (0) 2023.05.12
tailwind css Module not found  (0) 2023.05.06
Next.js 13.4  (0) 2023.05.06
Next.js Error [TypeError]: Cannot read properties of undefined (reading 'map')  (0) 2023.05.04