ruby-on-rails – 仅针对特定标签的Rails 4:html_safe

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 仅针对特定标签的Rails 4:html_safe前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想允许一些特定的标签,如(< br>),但让rails继续逃避别人. Html_safe似乎没有参数.这样做最顺利的方法是什么?

解决方法

The sanitize helper will html encode all tags and strip all attributes that aren’t specifically allowed.

sanitize @article.body,:tags => %w(br)

链接API Docs.

原文链接:https://www.f2er.com/ruby/270900.html

猜你在找的Ruby相关文章