gpt4 book ai didi

javascript - 将 html 元素传递到 jade 文件中

转载 作者:搜寻专家 更新时间:2023-10-31 22:56:17 25 4
gpt4 key购买 nike

是否可以将 HTML 元素传递到 jade 文件中,例如我希望以下内容用文本填充 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}

最佳答案

使用 !{item.body} 而不是 #

关于javascript - 将 html 元素传递到 jade 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7402750/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com