不幸的是,在尝试在Meteor中实现jQuery DataTable时,我完全迷失了。 Meteor版本的文档是不存在的,它给出的示例对我没有意义,也没有遵循Discover Meteor书籍的应用程序结构(即。{1}} Template.myTemplateName.browsers
是什么?{{1}我知道.browsers
,.rendered
,.created
等等。.helpers
来自哪里?
我做了.browsers
,meteor create
,mrt add iron-router
使用以下文件在页面上不显示任何内容。 (该路线正在工作,但我收到一个Spacebars错误)。
我有一个预定义的mrt add jquery-datatables
集合,其中包含title,description和sku
客户端:
Services
index.html
<template name="index">
<h1>Hello</h1>
{{> DataTable services }}
</template>
index.coffee
服务器
Template.index.services = -> return {
# ## Id
# * While not required, setting a unique table id makes external manipulation possible through jquery
id: "my-unique-table-id"
# ## Columns
# * Map your dataset to columns you want displayed
columns: [{
title: "Title"
data: "title"
},{
title: "Description"
data: "description"
},{
title: "SKU"
data: "sku"
}]
# ## Subscription
# * the datatables publication providing the data on the server
subscription: "services"
# ## Query
# * the initial client filter on the dataset
query:
grade: "A"
}
datatables.coffee