在 jade 中动态创建 table
Create table dynamically in jade
如何在 jade 中为 table 创建动态行。我的行数据将来自 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。
如何在 jade 中为 table 创建动态行。我的行数据将来自 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。