我正在创建一个 react wordpress 博客。现在我正在发送一个 JSON 请求并获取所有帖子,这工作正常)一旦我为每个帖子创建一个帖子对象。
我可以正确显示标题、图像等。但是,当我尝试使用 post.content.rendered 显示帖子的内容时(我使用前 250 个字符进行预览)它在输出中显示了实际的 html 例如它正在打印而不是打印“Hello World”
<p>Hello World</p>
我成功地从以下位置获得了 json 响应:/wp-json/wp/v2/posts 并且我在下面的代码中返回了帖子信息。
return (
<article className="post-outer" id={post.id}>
<section className="post-section">
<a className="post-link">
<div className="post-box" >
<h1 className="post-title">
{post.title.rendered}
</h1>
<p className="post-desc">
{post.content.rendered.substring(0,250)}
</p>
</div>
<figure className="media-wrapper"><img src={ this.state.media } /></figure>
</a>
</section>
</article>
)