问题描述
*** 在本地服务器上运行或构建它响应的下一个应用程序 ---> res.json() 不是函数,我也尝试过 JSON.stringyfy() 方法,但没有不工作***
export async function getStaticPaths() {
connectDB();
const res = await Product.find({product_type: 'mobile'});
const data = await res.json();
return {
fallback: false,paths: data.map((mobile) => ({
params: {
mobId: mobile._id.toString(),},})),};
}
export async function getStaticProps(context) {
connectDB();
const res = await Product.findOne({_id: context.params.mobId});
const data = await res.json();
return {
props: {
mobData: data,};
}
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)