我想在我的表单上启用用户的html输入。
尝试:= f.input :body, :input_html => {:escape => false} and also {:disabled => false}
现在文本显示为一个块。
如果用户提出:
Lorem Ipsum is simply dummy text `</br>` of the printing and typesetting industry.
应显示为:
Lorem Ipsum is simply dummy text
of the printing and typesetting industry.
非常感谢你的帮助!!
答案 0 :(得分:0)
解决了它。
格式f.text_area
在模型上添加方法
def body_enable_html
body.html_safe
end
并在视图中调用方法
= @collection_page.body_enable_html