我试图在我的视图中看到我的变量编码出了什么问题。所以我启动rails控制台并尝试
$ rails console
Loading development environment (Rails 3.2.11)
irb(main):001:0> html_escape({:a=>1, :b=>"my str"})
NoMethodError: undefined method `html_escape' for main:Object
如何在rails控制台中使用h或html_escape?
答案 0 :(得分:9)
易于解决。 html_escape在ERB :: Util中定义,所以只需写:
include ERB::Util
首次使用html_escape之前在控制台中
答案 1 :(得分:8)
您通过helper
致电。有些方法是私有的,所以你可能需要使用send来调用它们
helper.send(:html_escape, '123')
helper.pluralize 3, 'user'
答案 2 :(得分:0)
> helper.send(:html_escape, '{ a: 1, b: "my str" }')
"{ a: 1, b: "my str" }"