Rails 3 - 评论/消息 - “\n\r”

发布于 2024-11-03 08:13:29 字数 396 浏览 0 评论 0原文

在我的应用程序中,我有用户可以发送消息并对内容发表评论的地方。为了简单起见,我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一个人练习一个人 2024-11-10 08:13:29

simple_format 将按照您的方式设置文本格式描述。它内置于 Rails 中。

simple_format will format text in the way you are describing. It's built in to Rails.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文