我有两页。第一个parent.jade
,其中包含:
div.header
block header
第二个child.jade
包含:
extends main
block prepend header
那么,我如何在我的child.jade
中为标题栏添加一个类?我需要在不同的页面上进行其他类命名。
答案 0 :(得分:0)
是的,但您必须将object
传递给jade才能呈现。即。
在nodejs中
jade.renderFile('child.jade', {
"myIds" : 'FristPage',
"myClass" : [ 'this', 'is', 'cool' ],
})
在parent.jade
div.warpper( id=myIds, class=myClass )
block content
渲染时显示
<div class="warpper this is cool" id="FristPage">
The block form child.jade
</div>
但它不能直接来自玉器或文件玉器。