728x90
https://nextjs.org/learn/basics/data-fetching/blog-data
Data Fetching Overview
getStaticProps()
nextjs가 빌드타임에 'getStaticProps'가 props를 반환하면서 페이지를 pre-render할 거다.
export async function getStaticProps(context) {
return {
props: {} // will be passed to the page component as props
}
}
getStaticProps는 서버에서만 실행된다.
'next build'에서만 항상 실행된다.
'fallback: true'를 사용할 때, getStaticPropssms 백그라운드에서 실행된다.
'revalidate'를 사용했을 때, 백그라운드에서 실행된다.
ssg: getStaticProps()
ssr: getServerSideProps()
728x90
'NEXTjs' 카테고리의 다른 글
[Nuxtjs] Plugins의 inject를 쓰는 이유(feat. chatGPT에 물어봤어요.) (0) | 2023.02.04 |
---|---|
[Nextjs] useRouter의 query를 useEffect에서 사용하기 (0) | 2022.10.04 |
[Nextjs] 설치 (0) | 2022.09.21 |
[Nextjs] 기본 절대 경로 설정하기 (0) | 2022.09.20 |
댓글