如何在Ruby中编码/解码HTML实体?我试图解码一些HTML实体,如'&lt;'成为'<'。我有一个旧的宝石(html_helpers),但似乎已经放弃了两次。有什么建议?我需要在模型中使用它。
3 回答
慕码人8056858
TA贡献1803条经验 获得超6个赞
HTMLEntities可以做到:
: jmglov@laurana; sudo gem install htmlentitiesSuccessfully installed htmlentities-4.2.4: jmglov@laurana; irb irb(main):001:0> require 'htmlentities'=> []irb(main):002:0> HTMLEntities.new.decode "¡I'm highly annoyed with character references!"=> "¡I'm highly annoyed with character references!"
- 3 回答
- 0 关注
- 735 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消