Rails 3 - 评论/消息 - “\n\r”
在我的应用程序中,我有用户可以发送消息并对内容发表评论的地方。为了简单起见,我有 Comment,带有 id(整数)和 body(文本)。
当以 HTML 格式打印这些内容时,我需要用户的格式,例如可以像这样输入注释:
已添加评论
按回车键
在数据库中,这将是:
comment.body.last
"comment added\r\n\r\nwith an enter"
在我的页面上,这看起来很简单,就像“用回车添加的评论”。我想知道的是,在我看来是否有办法让它知道我想要渲染这些输入字符?作为
的还是什么?有谁知道如何保留用户的格式?
非常感谢你们。
In my application I have places where users can send messages and leave comments on content. So to keep this simple, I have Comment, with and id (integer) and body (text).
When printing these in HTML, I want the user's formatting, for example a comment might be entered like this:
comment added
with an enter
In the database, this comes to be:
comment.body.last
"comment added\r\n\r\nwith an enter"
On my page then, this comes to simple look like "comment added with an enter". What I'm wondering is if there is a way in my view to let it know I want to render these enter characters? As
's or something? Does anyone know how to preserve the user's format?
Thanks a ton guys.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
simple_format 将按照您的方式设置文本格式描述。它内置于 Rails 中。
simple_format will format text in the way you are describing. It's built in to Rails.
使用
simple_format
:http:// /api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html#method-i-simple_formatUse
simple_format
: http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html#method-i-simple_format