0

我不想使用 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 devwhich 在开发模式下启动下一个应用程序时,这可以正常工作,但是当我想运行时next build && next export,似乎 API 不起作用并data返回undefined,因此,没有生成页面并且它抛出一个错误说TypeError: Cannot read property 'title' of undefined

4

1 回答 1

0

改变fallback: truefallback: false解决问题。

来自 Next.js 网站(https://nextjs.org/docs/messages/prerender-error):

如果在 getStaticPaths 中启用,请确保您的组件处理回退。

于 2021-05-15T20:43:33.110 回答