使用最新版本的 Meteor 和 aslagle:reactive-table。
在 Iron Router 中,我可以将数据上下文传递给我的模板:
路由器.js:
Router.route('/dates', {
name: 'dates',
data: {
header_title: 'Dates & Times'
}
});
日期.html:
<div class="bt-h1">{{header_title}}</div>
我可以用 ReactiveTables 做类似的事情,即从 router.js 传递“变量”吗?
{{> reactiveTable collection=tests settings=variable}}