我试图在我的项目中使用doctorpangloss:filter-collections包。
我现在拥有以下内容:
服务器:
Meteor.publish('locations', function() {
return Locations.find();
});
路由器:
this.route('foci', {
path: '/foci',
(...)
},
waitOn : function () {
return Meteor.subscribe('locations');
}
});
客户端:
----.html file----
<template name="foci">
<div class="row">
{{> LocationList}}
</div>
</template>
<template name="LocationList">
{{#each locationData}}
(...)
{{/each}}
</template>
----.js file----
Template.LocationList.helpers({
locationData: function(){
return Locations.find()
}
});
一切标准到现在为止。在/ foci页面上显示数据。 但我希望有一个列表(或者实际上不是列表,但是瓷砖,但这里不相关),我可以过滤。我已经尽力使用这个包,但没有任何效果。根据文档(https://github.com/workpop/filter-collections/),完成它需要几分钟的工作,但我已经花了更多的时间来试图解决它。
如果有人可以帮助将标准过滤条添加到页面中,或者知道我可以使用的其他类似包,我们将不胜感激。