nextjs api 在通过 isomorphic-unfetch 获取时不工作

nextjs api not working when fetching through isomorphic-unfetch

我没有在道具中获取我的数据 (notes),当我使用 console.log(notes) 时它给出未定义。 我的后端 api 也在 /pages/api/notes/index.js 中的同一个项目中 我调用的 api 是 'http://localhost:3000/api/notes'

即使我的 api 在 postman 上测试时也能正常工作。但是在前端,数据不可用

请检查此问题。

我相信你只是打错了字。 Index.getinitialProps 应该是 Index.getInitialProps。请注意,首字母中的“i”是大写的。

另请注意,您并不明确需要 http://localhost:3000,如果您只是使用 /api/notes 调用它,它将正确地解析请求。这样,当您部署应用程序时,您不必返回并为您的数据提取进行大量更改。