Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的帖子内容中有一些</div>标签,所以当我通过以下方式呈现帖子正文时:
</div>
<%= simple_format(post.body) %>
格式将处于可怕的混乱状态。
那么怎么做才是正道呢?
您可以像这样摆脱</div>'s post.body:
post.body
<%= simple_format(post.body.gsub('</div>', '')) %>