我想格式化并在引导表中进行每个循环 所以这是我的bookshelper.js文件的代码:
Template.books.helpers({
'book': function(){
return Books.find();
}
});
在我的books.html文件中,我添加了一个引导表:
<table class="table table-striped">
<tr>
<th>Author</th>
<th>Title</th>
</tr>
{{#each book}}
<tbody>{{author}} </tbody>
<tbody>{{title}} </tbody>
{{/each}}
</table>
这是结果: http://gyazo.com/52870c76370bed527757a3c7fd5972d5 作者和标题结果都在一列(作者)下如何将它们分成两列? My Books mongo系列非常简单。它只有作者和标题属性。非常感谢您的支持
答案 0 :(得分:0)
For reference,表格是这样设计的:
<table>
<thead>
<tr>
<th>Author</th>
<th>Title</th>
</tr>
</thead>
<tbody>
<tr>
<td>Some Author</td>
<td>Some Title</td>
</tr>
<tr>
<td>Some Other Author</td>
<td>Some Other Title</td>
</tr>
<!-- etc -->
</tbody>
</table>
在此示例中,尝试在明确需要重复的部分周围使用each
语句。应该只有一个table
,一个thead
和一个tbody
(当然还有/table
,/thead
和/tbody
模板处理产生的HTML代码。