我的 Next.js 应用程序的页面由 API 提供,每个页面都有一个 uri_prefix 和一个 uri。uri_prefix 是强制性的,可以是c
或s
现在。但最终可以选择任何字母。
这是一个非常简单的结构:
pages
|-[prefix]
| |
| |-[slug]
处理它的 [slug].jsx 页面使用 ISG。
到目前为止,getStaticPath 回退设置为 true,因此如果管理员(eg. {uri_prefix : c, uri : newpage1} & {uri_prefix : s, uri : newpage2})
在后台创建新页面,ISG会在首次触发时生成静态/c/newpage1
和文件。/s/newpage2
但是一旦生成,尝试 alt url,例如/x/newpage
or/whatever/newpage
也会启动页面,这有点出乎意料(并且不需要)。阅读文档,我认为它只允许现有的前缀。
将 fallback 设置为 false 会禁止不需要的 url,但也需要重新构建应用程序,这不方便。
我想拥有/c/newpage1
或/s/newpage2
渲染,但不是(当然也不/c/newpage2
是)。每个页面仅与它自己的前缀相关联。/s/newpage1
/somethingelse/newpage*
我是否误解了后备的工作原理?
代码中是否存在明显错误,或者是否有另一种方法可以在没有完整构建的情况下为新页面实现 ISG,同时禁止不需要的 url?
这是 [slug].jsx 页面:
import Layout from '@/components/Layout';
import SmallCard from '@/components/SmallCard';
import {useRouter} from 'next/router';
export default function src({products, seo}) {
const router = useRouter();
if(router.isFallback) {
return (
<h1>Loading new page...</h1>
)
}
return (
products ? (
<Layout title={seo[0].title} description={seo[0].description}>
<div>
<div className='container-fluid my-5'>
<div className="row justify-content-center">
<h1>{seo[0].h1}</h1>
</div>
<div className="row justify-content-center">
{products.map(
(product)=>(
<SmallCard product = {product}/>
)
)}
</div>
</div>
</div>
</Layout>
) : (
<Layout title={seo[0].title} description={seo[0].description}>
<h1>{seo[0].h1}</h1>
<div dangerouslySetInnerHTML={{__html: seo[0].content_front}}/>
</Layout>
)
)
}
export async function getStaticPaths() {
const resPages = await fetch(`${process.env.API_BASE_URL}/path/to/pagesapi`);
const pages = await resPages.json();
const paths = pages.map((page) => ({
params: {
prefix: page.uri_prefix,
slug: page.uri
},
}))
return {
paths,
fallback: true
};
}
export async function getStaticProps({ params: { slug } }) {
const resPages = await fetch(`${process.env.API_BASE_URL}/path/to/pagesapi`);
const pages = await resPages.json();
const seo=pages.filter(page=> page.uri == slug);
if(seo[0].src) {
const src=seo[0].src;
// get products
const resProducts = await fetch(`${process.env.API_BASE_URL_LEGACY}${src}`);
var products = await resProducts.json();
} else {
var products = null
}
return {
props: {
products,
seo
},
revalidate:60,
};
}
提前致谢。