我从node expressjs框架开始,我遇到了这个我无法解决的问题。
我正试图用一些博客文章显示一个表(是的,一个博客…),但是我没有完成。
这是玉模板代码:
div table thead tr: th Posts tbody each post,i in userPosts tr(class=(i % 2 == 0) ? 'odd' : 'even'): a(href='/admin/post/' + post.id) #{post.author} - #{post.title}
这是HTML输出:
<div> <a href="/admin/post/1">Post 1</a> <a href="/admin/post/2">Post 2</a> <a href="/admin/post/3">Post 3</a> <table> <thead> <tr> <th>Posts</th> </tr> </thead> <tbody> <tr class="odd"></tr> <tr class="even"></tr> <tr class="odd"></tr> </tbody> </table> </div>
那么,任何想法?