它在本地主机上工作但在构建时抛出错误 我试图在 getStaticProps() 中编写逻辑但是 ( const res = await model.find(); const data = await res.json() ) ---> 它也抛出 res.json() 不是函数>
export default function Index({ data }) {
return <div>{data}</div>;
}
export async function getStaticProps() {
const response = await fetch("http://127.0.0.1:8000/data");
const data = await response.json();
return { props: { data } };
}