gpt4 book ai didi

html - 使用 Jade、NodeJS、Express 的动态 html 页面

转载 作者:IT老高 更新时间:2023-10-28 23:23:53 26 4
gpt4 key购买 nike

我有一个大的 json 对象,其中包含从 redis keystore 检索到的示例电子表格中的单元格数据。我想在 Jade 模板中以html表格格式显示。但是现在,我只能将其显示为 json 字符串。

我也不清楚如何使用jade/express生成动态网页。

正在尝试传递的示例 JSON 字符串:

{"1A":"Cell Data 1", "1B": "Cell Data 2",...}

这是来自 excel 电子表格的数据。

请帮我解开这个疑问。

最佳答案

table
thead
tr
th Name
th Food
tbody
- var items = [{name:'Dean',food:'Chicken'}, {name:'Paul',food:'steak'}]
- each item in items
tr
td= item.name
td= item.food

输出

<table><thead><tr><th>Name</th><th>Food</th></tr></thead><tbody><tr><td>Dean</td><td>Chicken</td></tr><tr><td>Paul</td><td>steak</td></tr></tbody></table>

或者比在jade中定义items数组更实际

var items = dynamicallyGenerateYourJson();
res.render('table', {
items: items
});

关于html - 使用 Jade、NodeJS、Express 的动态 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5204905/

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