在 MySQL 和 Heroku 上设置 Rails 的富文本支持
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,
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.