这个是typeorm的问题,next这里在ssr回调中不能直接调用数据库连接,可以在ssr回调中通过调取自身api,在api中调取数据库,例如:
export async function getServerSideProps() {
const result = await fetch.post<ResponseDataer>({
// 标记
url: `${SERVER_BASEURL}/api/article/gets`,
});
let articles = [];
if (result && result.status === 200) {
articles = result.data.data.articles;
}
return {
props: {
articles,
},
};
}