有没有办法列出Ruby ERB模板中的可用变量?

时间:2010-09-27 01:05:19

标签: ruby-on-rails ruby erb

假设我有一个名为 my_template.html.erb 的Ruby ERB模板,它包含以下内容:

<div><%= @div_1 %></div>
<div><%= @div_2 %></div>
<div><%= @div_3 %></div>

有没有办法可以编程方式列出模板中的所有可用变量?

例如,以下方法:

def list_out_variables
  template = File.open("path_to/my_template.html.erb", "rb").read
  erb = ERB.new( template )
  erb.this_method_would_list_out_variables  
end

会返回类似的内容:

['div1','div2','div3']

非常感谢任何帮助。

谢谢, 麦克

1 个答案:

答案 0 :(得分:25)

要获取.erb文件可用的变量列表(来自控制器):

在erb:

中添加断点
<% debugger %>

然后在调试器中键入instance_variables以查看所有可用的实例变量。

补充:注意instance_variables是Ruby类Object及其所有子类中可用的方法。 (正如@mikezter所指出的那样。)所以你可以在你的sw中以编程方式调用该方法,而不是使用调试器,如果你真的想这样做。

您将获得当前对象的实例变量列表。

已添加:要获取.erb文件使用的变量列表:

# <template> is loaded with the entire contents of the .erb file as
# one long string
var_array = template.scan(/(\@[a-z]+[0-9a-z]*)/i).uniq