我不明白为什么这个组件不起作用这里是img的链接,因为我不能直接发布图片[1]: https://i.stack.imgur.com/Ax7im.png谢谢你的帮助这里有代码:
import React from 'react';
import ReactDOM from 'react-dom';
import Postitem from "./Postitem";
const Postlist=(post,title)=>{
return (
<div>
<h1 style={{textAlign: 'center'}}>{title}</h1>
{post.map((post) =>
<Postitem post={post} key={post.id}/>)};
</div>
)};
export default Postlist;
React函数组件只接受一个参数,它是一个包含所有props的对象。假设您在渲染post
prop时将其作为数组传递,则将函数声明固定为此将起作用:
const Postlist=({post,title})=>{
// component body here, as above
}
检查一下"post"变量到这个组件。如果你使用post.map;函数,则必须是数组。