我正在关注Next.js tutorial for fetching data
但是与教程不同,我使用axios
。问题是getInitialProps
无法获得我想要的数据。
代码如下:
import axios from "axios";
import Link from "next/link";
const Body = props => (
<div>
<h1>Shows</h1>
<ul>
{props.data.map(({ show }) => (
<li key={show.id}>
<Link as={`/p/${show.id}`} href={`/post?title=${show.title}`}>
<a>{show.name}</a>
</Link>
</li>
))}
</ul>
</div>
);
Body.getInitialProps = async function() {
const res = await axios.get("https://api.tvmaze.com/search/shows?q=batman");
const data = await res.data;
console.log(`Show data fetched. Count: ${data.length}`);
return {
data: data
};
};
export default Body;
对我来说,代码看起来不错,但是错误Unhandled Rejection (TypeError): Cannot read property 'map' of undefined
不断发生。
答案 0 :(得分:0)
我可能是错的,如果告诉我,我会删除答案,但是我认为这是因为您没有该prop的默认值,并且不会立即调用获取数据的方法,因此有一瞬间,您的道具是undefined
,而您正在使用未定义的道具调用map
。
答案 1 :(得分:0)
我已经解决了这个问题。
发生这种情况是因为我违反了一条简单的规则。
根据next.js document,有一个注释说
注意:getInitialProps
不能在子组件中使用。仅在pages
中。
因此,当我在index.js
处提取数据时,它成功获取了我想要的数据。
我认为我可以在getInitialProps
之类的任何组件中使用componentDidMount
。
那是个问题。