1

如何使用 Meteor Collection 在数据表中设置数据

4

1 回答 1

1

使用 Meteor,它与 C#/.NET 有点不同。我不确定数据表是否明确地从数组/实际数据变量中获取数据源。但是可以从 minimongo 查询中创建一个表,例如People.find()

你有你要转换成数据表的表。{{#each}}为每个“行/文档”制作一个循环的基本表格

<template name="data">
    <table id="datatable">
        <thead>
            <th>Name</th>
            <th>Address</th>
        </thead>
        <tbody>
        {{#each person}}
          <tr>
              <td>{{name}}</td>
              <td>{{address}}</td>
          </tr>
        {{/each}}
        </tbody>
    </table>
</template>

然后使用连接到数据库的模板助手将数据附加到此:

 Template.data.person = function() {
     return People.find()  //Return the data containing name/addresses of people
 }

最后将普通的普通表转换为数据表

 Template.data.rendered = function() {
     $('#datatable').dataTable()
 }
于 2013-03-27T17:18:34.407 回答