首页 > 解决方案 > Next.js - 您不能将 getInitialProps 与 getServerSideProps 一起使用

问题描述

所以我有一个动态路线/post/[slug],想添加包next-i18next。我将每一页包装在一个 HOC 中,它处理我所有的 GraphQL 内容 ( next-apollo)。这个 HOC 使用getInitialProps, 并且next-i18next想要getStaticProps(SSG) 或getServerSideProps(SSR)。但是,Next 不允许getStaticPropsgetServerSidePropsgetInitialProps.

有解决方法吗?我可以将源代码更改next-apollo为 SSR 或 SSG 还是静态的?

几个链接:

标签: javascriptreactjstypescriptnext.js

解决方案


推荐阅读