它可以在本地主机中工作,但是在构建时抛出错误 我试图在 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 } };
}