我无法在 HAML 中包含部分文件来工作。
我有一个来自基本 HAML 测试的代码
# file: partial_layout.haml
%h1 Partial layout used with for block:
= render :layout => 'layout_for_partial' do
%p Some content within a layout
第二个文件
# file: _layout_for_partial.haml
.partial-layout
%h2 This is inside a partial layout
= yield
所以我点击 Prepros App 中的编译按钮...
Exception on line 2: undefined method `render' for #<Object:0x2a196c8>
Use --trace for backtrace.
D:\Download\haml-master\haml-master\test\templates\partial_layout.haml
这应该是基本的 HAML 功能。我究竟做错了什么?