如何在反应渲染函数中创建动态 href?
2022-08-30 04:20:32
我正在呈现帖子列表。对于每个帖子,我想呈现一个锚点标签,帖子ID作为href字符串的一部分。
render: function(){
return (
<ul>
{
this.props.posts.map(function(post){
return <li key={post.id}><a href='/posts/'{post.id}>{post.title}</a></li>
})
}
</ul>
);
我如何做到这一点,使每个帖子都有 href 的 ,等等?/posts/1
/posts/2