我正在制作电子商务 Next.js 静态应用程序。
对于我的产品页面,我使用增量静态生成(我将进一步称其为 ISG)fallback: true
并简单地useRouter
显示加载组件(如微调器或其他东西,这无关紧要)。ISG 对于频繁更新数据(如添加评论、新产品等)的静态站点非常有用,但如果我没有产品路径(例如/products/nike-pants-12345
),页面将返回“无限加载”和错误。
错误如下。
如果我们在控制台看看,我们可以看到:TypeError: Cannot read property '_id' of null
。这意味着应用程序没有找到具有请求 _id 的产品(可能是名称、slug 等)。
所以,问题是我如何才能避免这种情况,是否应该完全避免这种情况?
export async function getStaticPaths() {
await dbConnect()
const products = await ProductModel.find({})
const paths = products.map((doc) => {
const product = doc.toObject()
return {
params: { id: product._id.toString() }
}
})
/* fallback: true means that the missing pages
will not 404, and instead can render a fallback */
return { paths, fallback: true }
}
export async function getStaticProps({ params }) {
await dbConnect()
const product = await ProductModel.findById(params.id).lean()
product._id = product._id.toString()
// revalidate set the time (in sec) of re-generate page (it imitate SSR)
return { props: { product }, revalidate: 30 }
}