我有这个模板:
.bar
.titleBox
a.title(href=URL) #{title}
我想在另一个页面titles.jade中多次包含它,如下所示:
#contentBox
include bar
include bar
include bar
我希望每个人都有不同的 URL 和标题值。
我在节点中有这段代码:
read(function(post){ //post is an array of objects retrieved from a mongodb collection
// I was thinking of using a for loop to iterate through the array
res.render('titles', {title: post[i].title, url: post[i].URL});
我怎样才能达到我想要的结果?