做的一个每天热点应用无法被 google seo 收录,现在学习使用 next.js 重新实现一下,
export async function getServerSideProps(context) {
...
const response = await axios.get(url, {...})
const data = await response.data;
console.log("data:", data);
...
}
用 axios 获取数据的时候,一直返回空,curl 命令是正常的, 折腾两天了
吐槽一下: 好难😭