在 MySQL 和 Heroku 上设置 Rails 的富文本支持

发布于 2024-10-22 01:11:07 字数 171 浏览 3 评论 0原文

在 Rails 中存储包含粗体、项目符号点和不同大小的格式化文本正文需要什么?

首先,text字段类型是否有能力保存这个?

如果是这样,我所需要做的就是使用富文本编辑器进行编辑,并使用

 显示吗?

What does it take to store a body of formatted text that contains bold, bullet points, and different sizes in Rails?

Firstly, does the text field type have the ability to hold this?

If so, is it true that all I need to do is edit using a rich text editor, and display using <pre>?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冬天旳寂寞 2024-10-29 01:11:07

是的,text 类型旨在存储字符串。

通常的方法是使用 Javascript 富文本编辑器来生成 HTML。您可以将原始 HTML 直接保存到数据库中,然后在显示时对其进行清理。这是为了防止人们在文本区域中输入 Javascript 和其他令人讨厌的内容,当其他访问者查看他们的输入时,这些内容就会被执行。

Rails 3 默认情况下会清理您的输出,因此所有 HTML 都会被转义。您需要调用 <%= @model.rich_text.html_safe %> 来跳过此清理,或者(更好!)调用 <%= sanitize(@model. rich_text, :tags => %w(bip)) %>,传入允许标签的显式列表。

我没有使用 Heroku 的经验,但我无法想象它会有什么不同。

Yes, the text type is designed to store character strings.

The usual approach is to use a Javascript rich text editor which generates HTML. You save the raw HTML straight to the database, and then sanitize it when you display it. This is to prevent people from entering Javascript and other nasties into the text area that would get executed when other visitors view their input.

Rails 3 sanitizes your output by default, so all HTML will be escaped. You will need to call either <%= @model.rich_text.html_safe %> to skip this sanitizing, or (much better!) call <%= sanitize(@model.rich_text, :tags => %w(b i p)) %>, passing in an explicit list of allowed tags.

I have no experience with Heroku but I can't imagine it will be any different.

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