下面混入
mixin form(title, action)
legend title
form.form-horizontal(method='post', action=action)
label Name:
input(type='text',name=Name,id=Name)
呈现为
<legend>title</legend>
<form method="post" action="save" class="form-horizontal">
<label>Name:</label>
<input type="text"/>
</form>
现在,我将标签和字段提取到另一个 mixin
mixin form(title, action)
legend title
form.form-horizontal(method='post', action=action)
mixin field(name)
label #{name}:
input(type='text',name=name,id=name)
并用作
mixin form("xxxx", "save")
mixin field('Name')
这给出了错误
>> Line 1209: Unexpected string
Warning: Jade failed to compile test.jade. Use --force to continue.
是否可以嵌套 mixin 以及如何使其呈现为第一个输出。
谢谢