是否可以将 HTML 元素传递到一个玉文件中,例如,我希望以下内容用文本填充 p 元素,以及一个代码元素,其中包含一些嵌套在 p 元素内的文本。
包含字符串的 JSON
var news = {
one : {
title : "Using JSON",
body : "Using JSON is a great way of passing information into the jade template files."+
"It can be looped over using jades each syntax <code>test</code>"
},
two : {
title : "",
body : ""
}
}
路由 HTTP 请求
// Routes
app.get(navigation.home.uri, function(req, res){ //Home
res.render(navigation.home.url, {
title: navigation.home.title,
navigation: navigation,
news: news
});
});
Jade 文件片段,每个新闻项都有一个循环
section#news
- each item in news
article(class="news")
header
h2 #{item.title}
p #{item.body}