ruby – 如何在非rails应用程序中实现erb partials?

前端之家收集整理的这篇文章主要介绍了ruby – 如何在非rails应用程序中实现erb partials?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想做这样的事情:
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)
原文链接:https://www.f2er.com/ruby/270236.html

猜你在找的Ruby相关文章