是否可以渲染Tilt模板的片段(即,不使用磁盘上的模板文件)?
背景:我想在Ruby CGI程序中渲染内联模板字符串。
答案 0 :(得分:7)
是。您可以使用任何字符串数据:
>> require 'haml'
>> template = Tilt::HamlTemplate.new { "%h1= 'Hello Haml!'" }
=> #<Tilt::HamlTemplate @file=nil ...>
>> template.render
=> "<h1>Hello Haml!</h1>"
查看更多示例in the docs