下一个错误:导出在以下路径上遇到错误

时间:2021-05-01 11:06:21

标签: javascript node.js reactjs next.js next

我尝试npm run build。为什么构建错误?

<块引用>

错误:导出在以下路径上遇到错误: /博客/pos1 /博客/post2 /博客/post3

Export encountered errors on following paths

我的代码:

export async function getStaticProps(context) {
    const post = context.params.post;
    const res = await axios({
         method: 'get',
         url: `...=${post}`});
    return {
      props: {
        post: post,
      },
      revalidate: 1,
    }
  }

  export async function getStaticPaths() {
    const posts = await lastPost();
  
    return {
      paths: posts.data.data.map((post) => {
        return {
          params: {
            post: post.seourl,
          },
        }
      }),
      fallback: true,
    }
  }
  


我注意到它是 manifest.json 而不是 ${puts} 并且我使用了 post 方法并且 axios 能够得到答案,但仍然存在无法创建页面的问题。

0 个答案:

没有答案