gpt4 book ai didi

node.js - 在 jade 中动态创建表

转载 作者:可可西里 更新时间:2023-11-01 09:24:29 26 4
gpt4 key购买 nike

如何在 jade 中为表格创建动态行。我的行数据将来自 nodejs 呈现的 MongoDB。这是我的 MongoDB 文档 =>

{
"_id" : ObjectId("55429a92bf0adf38ce82052f"),
"userid" : "103",
"projectName" : "Nodejs Project",
"startDate" : "03/15/2015",
"endDate" : "05/15/2015",
"tasks" : [
{
"taskid" : "5",
"taskDescription" : "Task 5"
},
{
"taskid" : "6",
"taskDescription" : "Task 6"
},
{
"taskid" : "7",
"taskDescription" : "Task 7"
}
]
}

我希望 taskDescription 值按行显示。

最佳答案

table
thead
tr
th Description
tbody
each task in tasks
tr
td=task.taskDescription

为了将来引用,您可以测试您的 jade 模板 here .

关于node.js - 在 jade 中动态创建表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29980054/

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