2014-04-05 31 views
0

在我的流星的應用程序,我有以下模板:流星模板 - 如何分頁添加到表

<template name="users"> 

    <div class="container-fluid"> 
     <div class="row-fluid"> 
      <div class="page-header"> 
       <h1><small>Users List</small></h1> 
      </div> 

      <table class="table table-bordered table-striped table-hover" id='userTable'> 
       <thead> 
        <tr> 
         <th>Name</th> 
        </tr> 
       </thead> 
       <tbody> 
        {{#each userList}} 
        {{>userRow}} 
        {{/each}} 
       </tbody> 
      </table> 
     </div> 
    </div> 
</template> 
<template name="userRow"> 
    <tr class="userRow"> 
     <td>{{name}}</td> 
    </tr> 
</template> 

我應該怎麼做(任何種類的)分頁添加到這個表?

+0

你有沒有看過[Discover Meteor](http://book.discovermeteor.com/)呢?它有一個很好的分頁章節。 –

+0

剛剛購買它約5分鐘前:) –

回答

3

這是一個great video回答你的問題。許多道具讓喬治(geomck1967)製作這麼好的流星視頻系列!

+0

確實很棒! –