我不想使用 Apollo graphql 客户端为 next.js 中的 SSG 导出生成我的帖子的 slug 列表。 这是我的代码:
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
返回 undefined
,因此,不会生成任何页面,并且会引发错误,提示 TypeError: Cannot read property 'title' of undefined
答案 0 :(得分:0)
将 fallback: true
更改为 fallback: false
解决了问题。
来自 Next.js 网站 (https://nextjs.org/docs/messages/prerender-error):
<块引用>确保您的组件在启用时处理回退 获取静态路径。