玉转换列表到表

时间:2016-08-26 16:33:57

标签: node.js twitter-bootstrap pug

我正在学习node.js并试图创建一个应用程序。我在将玉器列表更改为表时遇到问题。这是我试图转换的代码

h3.
    Students
  ul
    each student, i in studentlist
      li#student_list_item
        a(href='#') #{student.student} lives at #{student.street} #{student.city}, #{student.state}

这是我正在尝试做的事情:

h3.
  Students
table.table.table-condensed.table-hover
  th Name
  th Address
  th City
  th State
  th GPA
each student, i in studentlist
  td#student_list_item
    td= student.student
    td= student.street
    td= student.city
    td= student.state
    td= student.gpa

由于

1 个答案:

答案 0 :(得分:0)

你不想为每个学生提供一个新的表格行吗? (并排在第一行)。

tr#student_list_item

而不是

td#student_list_item