流星模板 - 如何为表添加分页

时间:2014-04-05 22:18:14

标签: twitter-bootstrap meteor

在我的meteor应用程序中,我有以下模板:

<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> 

如何在此表中添加分页(任何类型)?

1 个答案:

答案 0 :(得分:3)

这是一个great video,可以回答您的问题。乔治(geomck1967)制作如此精彩的流星视频系列的许多道具!