Next js - 无法使用 apollo 客户端生成动态 getStaticPaths api
Next js - Can't generate dynamic getStaticPaths with apollo client api
我不想使用 Apollo graphql 客户端为 next.js 中的 SSG 导出生成我的帖子列表。
这是我的代码:
import { gql } from "@apollo/client";
import client from "../../graphql/apollo-client";
import { BLOG_POSTS, POST_DATA } from "../../graphql/apollo-queries";
export async function getStaticPaths() {
const { loading, error, data } = await client.query({ query: BLOG_POSTS });
const peths = data.posts.nodes.map((post) => ({
params: { slug: post.slug },
}));
return {
paths: peths || [],
fallback: true,
};
}
export async function getStaticProps({ params }) {
const { data } = await client.query({
query: POST_DATA,
variables: { id: params.slug, idType: "SLUG" },
});
return {
props: {
post: data.post,
},
};
}
export default function BlogSlug({ post }) {
return (
<h1>{post.title}</h1>
)
}
当我使用 npm run dev
以开发模式启动下一个应用程序时,它工作正常,但是当我想要 运行 next build && next export
时,它似乎是 API不工作并且 data
returns undefined
,因此,没有页面生成并且它抛出一个错误说 TypeError: Cannot read property 'title' of undefined
将 fallback: true
更改为 fallback: false
解决了问题。
来自 Next.js 网站 (https://nextjs.org/docs/messages/prerender-error):
Make sure your component handles fallback if it is enabled in
getStaticPaths.
我不想使用 Apollo graphql 客户端为 next.js 中的 SSG 导出生成我的帖子列表。 这是我的代码:
import { gql } from "@apollo/client";
import client from "../../graphql/apollo-client";
import { BLOG_POSTS, POST_DATA } from "../../graphql/apollo-queries";
export async function getStaticPaths() {
const { loading, error, data } = await client.query({ query: BLOG_POSTS });
const peths = data.posts.nodes.map((post) => ({
params: { slug: post.slug },
}));
return {
paths: peths || [],
fallback: true,
};
}
export async function getStaticProps({ params }) {
const { data } = await client.query({
query: POST_DATA,
variables: { id: params.slug, idType: "SLUG" },
});
return {
props: {
post: data.post,
},
};
}
export default function BlogSlug({ post }) {
return (
<h1>{post.title}</h1>
)
}
当我使用 npm run dev
以开发模式启动下一个应用程序时,它工作正常,但是当我想要 运行 next build && next export
时,它似乎是 API不工作并且 data
returns undefined
,因此,没有页面生成并且它抛出一个错误说 TypeError: Cannot read property 'title' of undefined
将 fallback: true
更改为 fallback: false
解决了问题。
来自 Next.js 网站 (https://nextjs.org/docs/messages/prerender-error):
Make sure your component handles fallback if it is enabled in getStaticPaths.