我正在使用嵌入式 ruby (ERB) 来生成文本文件。我需要知道模板文件的目录才能找到相对于模板文件路径的另一个文件。ERB 中是否有一个简单的方法可以为我提供当前模板文件的文件名和目录?
我正在寻找类似于 的东西__FILE__
,但提供模板文件而不是 (erb)。
当您使用 Ruby 中的 ERB api 时,您提供了一个字符串 to ERB.new
,因此 ERB 没有办法知道该文件的来源。但是,您可以使用属性告诉对象它来自哪个文件filename
:
t = ERB.new(File.read('my_template.erb')
t.filename = 'my_template.erb'
现在您可以使用__FILE__
in my_template.erb
,它将引用文件的名称。(这就是erb
可执行文件的作用,这就是为什么__FILE__
在您从命令行运行的 ERB 文件中工作的原因)。
为了使它更有用一点,您可以使用从文件读取的新方法对 ERB 进行修补,并设置filename
:
require 'erb'
class ERB
# these args are the args for ERB.new, which we pass through
# after reading the file into a string
def self.from_file(file, safe_level=nil, trim_mode=nil, eoutvar='_erbout')
t = new(File.read(file), safe_level, trim_mode, eoutvar)
t.filename = file
t
end
end
您现在可以使用此方法读取 ERB 文件,并且__FILE__
应该在其中工作,并参考实际文件而不仅仅是(erb)
:
t = ERB.from_file 'my_template.erb'
puts t.result