Next.js 使用getStaticProps 及其他方式取得伺服器端資料
問題:
問題:
問題:
問題:
問題:
Next.js 方法(如 getStaticProps)專門為伺服器端資料擷取而設計,並且僅在頁面目錄中有效運作。但是,在最新版本的 Next.js 中,可以直接在應用程式目錄內的伺服器元件中取得資料。
// page.js export default async function Page() { const staticData = await fetch(`https://...`, { cache: "force-cache" }); const dynamicData = await fetch(`https://...`, { cache: "no-store" }); return "..."; }
要解決此問題並執行 server-在最新的 Next.js中獲取側面數據,請考慮以下選項:
// layout.js OR page.js OR route.js export const revalidate = 10;
// ... async function getPosts() { const posts = await prisma.post.findMany(); return posts; } export default async function Page() { const posts = await getPosts(); // ... }
以上是如何使用伺服器元件及其他元件在 Next.js 中取得伺服器端資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!