[Next.js] 使用 Headless CMS WordPress 和插件 [WPGraphQL],我能够通过调用 getStaticPaths 中的 API 创建类别列表。
src
--pages
----category
------[slug.tsx]
--------page
----------[pageNo.tsx]
[slug].tsx 中描述了以下 getStaticPaths
export async function getStaticPaths () {
const allPosts = await GET_ALL_CATEGORIRS_SLUG ();
return {
paths: paths:
allPosts.edges.map (({node}) => `/category/${node.slug}`) ||
[],
fallback: true,
};
}
[pageNo].tsx 中描述了以下 getStaticPaths
export async function getStaticPaths() {
const totalCount = await GET_TOTAL_POST_COUNT(currentCategorySlug);
const totalPostsCount = totalCount.pageInfo.offsetPagination.total ?? 0;
const pagesCount = Math.ceil(
(totalPostsCount - PER_PAGE_FIRST) / PER_PAGE_REST + 1
);
const paths = new Array(pagesCount).fill("").map((_, index) => ({
params: {
pageNo: (index + 1).toString(),
},
}));
return {
paths: [...paths],
fallback: true,
};
}
但是,除非currentCategorySlug明确,否则这不起作用。
如何获取当前的父类别?
我不能在这里使用 useRouter,所以请告诉我是否有办法获取currentCategorySlug或其他东西。还是您在某处使用 useRouter ?