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.
我是 Rails 新手。我想创建一个文本区域,它可以接受 html 作为输入并且也可以处理它们。我不知道该怎么做。我正在为我的表单使用 formtastic gem。
请帮帮我。
提前致谢。
如果您在文本区域键入任何有效的 html,保存,然后使用 html_safe 方法显示字符串,它应该像往常一样解析 html。
示例:应该在屏幕上"<b>Hello bold</b>".html_safe呈现Hello 粗体。
"<b>Hello bold</b>".html_safe