对于我的SSG页面,我需要传递一个参数,该参数是语言到我的API调用函数,该函数在generateStaticParams
函数中,我在cookie中存储了语言,我无法访问,是否有方法可以将参数传递给我的函数?
export async function generateStaticParams() {
const getAllCategories = await getCategories(); // this needs language
return getAllCategories.map((category: Category) => ({
id: category.id,
category: category.groupName,
}));
}
1条答案
按热度按时间kulphzqa1#
您可以在Next13中使用Nextjs官方库的cookie