我有一个Workouts
集合,每个对象都有 acategory
和 a name
。在 HTML 层,我正在创建一个类别标题,然后在下面显示一个锻炼列表。
我让它工作,但我不可能以流星和/或车把的方式来做。认为我正在努力理解 的上下文this
以及如何将数据传递到模板中。
这是我的模板函数:
Template.categories.getCategories = ->
workouts = Workouts.find().fetch()
categories = _.map workouts, (workout) -> workout.category
_.uniq categories
Template.workouts.getWorkouts = ->
Workouts.find {category: this.toString()},
sort: ['category', 'name']
这是模板文件:
<head>
</head>
<body>
{{> categories}}
</body>
<template name="categories">
{{#each getCategories}}
<h2>{{this}}</h2>
{{> workouts}}
{{/each}}
</template>
<template name="workouts">
{{#each getWorkouts}}
<div class="workout container">
<div>
{{name}}
</div>
<div>
{{units}}
</div>
</div>
{{/each}}
</template>
里面Template.categories.getCategories
,this
是Window
。但是在里面Template.categories.getCategories
,它是一个字符串对象,相当于模板this
里面categories
,它是一个字符串文字。嗯?
同样,这有效。我得到一个类别标题,下面有一个锻炼列表,但是有什么更好的方法呢?