10

我试图在我的视图中查看我的变量编码出了什么问题。所以我启动了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?

4

3 回答 3

12

很容易解决。html_escape 在 ERB::Util 中定义,所以简单地写:

include ERB::Util

在第一次使用 html_escape 之前在您的控制台中

于 2013-03-01T17:33:48.430 回答
10

你打电话给它helper。有些方法是私有的,因此您可能需要使用 send 来调用它们

helper.send(:html_escape, '123')
helper.pluralize 3, 'user'
于 2013-03-01T17:32:06.843 回答
0
> helper.send(:html_escape, '{ a: 1, b: "my str" }')
"{ a: 1, b: "my str" }"
于 2013-03-01T17:56:01.637 回答