更新:
- 由于 [category_slug]-index.js 导致此错误的原因是
getServerSideProps
什么? - 我试图
index.js
在产品文件夹下做,它有效,意味着它可以与 [category_slug] which 一起使用getServerSideprops
,对吗?
这是我的文件夹结构
pages
|-categories
|-[category_slug]
|-index.js
|-product
|-[product_slug].js
当我输入 [product_slug] 时会导致错误。显示:
错误:所需参数 (category_slug) 未在 /categories/[category_slug]/product/[product_slug] 的 getStaticPaths 中作为字符串提供
这可以在 Next.js 中做嵌套路由文件夹吗?我找不到这方面的任何信息。我在下面显示我的代码。
// [product_slug].js
export async function getStaticProps({ params: { product_slug } }) {
const product_res = await fetch(
`${API_URL}/products/?product_slug=${product_slug}`
); // question mark is query slug, to find the slug in the json
const found = await product_res.json();
return {
props: {
product: found[0],
}
};
}
export async function getStaticPaths() {
// Retrieve all the possbile paths
const products_res = await fetch(`${API_URL}/products/`);
const products = await products_res.json();
return {
paths: products.map((product) => ({
params: { product_slug: product.product_slug },
}),
fallback: false,
};
}
我试图为 [category_slug] 提供硬编码值。以这种方式正确吗?我也不确定。我在文档中找不到这个。
export async function getStaticProps({ params: { product_slug } }) {
const product_res = await fetch(
`${API_URL}/products/?product_slug=orange_juice`
);
const found = await product_res.json();
return {
props: {
product: found[0],
},
};
}
export async function getStaticPaths() {
// Retrieve all the possbile paths
const products_res = await fetch(`${API_URL}/products/`);
const products = await products_res.json();
return {
paths: [
{
params: {
product_slug:
"categories/orange/product/orange_juice",
},
},
],
fallback: false,
};
}
谁能提供在 [product_slug] 动态路由中输入第一个动态路径的正确方法?