我不知道为什么即使添加了密钥,仍会继续要求密钥。
我有一个渲染一些帖子的组件,但每个帖子都在它自己的组件中渲染,并且它位于来自Swiper的组件内
我的组件如下所示:
export default function Posts() {
const postsCards = posts.map(post => {
return <SwiperSlide className="w-25" key={post._id}>
<PostCard post={post} key={post._id}/>
</SwiperSlide>
})
return (
<div className="container">
<h4>Top posts</h4>
<Swiper
slidesPerView= 'auto'
spaceBetween= {10}
observer= {true}
observeParents={true}
>
{postsCards}
</Swiper>
</div>
)
}