我想做这样的事情:
require 'erb' @var = 'test' template = ERB.new File.new("template.erb").read rendered = template.result(binding())
但是如何在template.erb中使用partials?
解决方法
也许蛮力呢?
header_partial = ERB.new(File.new("header_partial.erb").read).result(binding) footer_partial = ERB.new(File.new("footer_partial.erb").read).result(binding) template = ERB.new <<-EOF <%= header_partial %> Body content... <%= footer_partial %> EOF puts template.result(binding)