在jade中动态创建表

时间:2015-05-01 00:41:50

标签: node.js mongodb pug

如何在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值。

1 个答案:

答案 0 :(得分:6)

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

为了将来参考,您可以测试您的玉石模板here