我正在尝试aldeed:来自here的流星表格包。 这是我的代码
客户方:
TabularTables = {};
Books= new Mongo.Collection('books');
Meteor.isClient && Template.registerHelper('TabularTables', TabularTables);
TabularTables.Books = new Tabular.Table({
name: "BookList",
collection: Books,
columns: [
{data: "title", title: "Title"},
{data: "author", title: "Author"},
{data: "copies", title: "Copies Available"},
]
});
在html文件中:
{{> tabular table=TabularTables.Books class="table table-striped table-bordered table-condensed"}}
我可以看到表格已形成,但我在表格中显示数据时遇到问题。我做错了什么?
答案 0 :(得分:4)
也许你只在客户端定义了TabularTables?将其定义为共享资源(例如,在客户端文件夹之外)应该可以解决您的问题。