如何在ruby中的button_tag中编码字符串?

时间:2013-10-15 15:31:03

标签: ruby-on-rails encoding

如何逃避放大器编码的字符串?

自:

= button_tag("×")

我明白了:

<button>&amp;times;</button>

但我想:

<button>&times;</button>

所以它可以呈现给:

×

怎么做?

更新

与[Why does Rails 2.3.16 escape quote chars in form fields?]有关,但没有明确答案,有点过时

1 个答案:

答案 0 :(得分:3)

使用html_safe禁用HTML实体的自动转义:

= button_tag('&times;').html_safe