流星的搜索结果轻松搜索

时间:2016-02-03 13:35:52

标签: meteor meteor-easy-search

您好我使用了Meteor的matteodem:easy-search包。现在我将我的结果分组为size

Template.UserList.helpers({
  users: function () {
    all = Meteor.users.find().fetch();
    chunks = [];
    size = 3;
    while (all.length > size) {
      chunks.push({ row: all.slice(0, size)});
      all = all.slice(size);
    }
    chunks.push({row: all});
    return chunks;
  }
});

它就像一个魅力,但现在我想知道如何用

做到这一点

{{#EasySearch.Each index=playersIndex }}

因为您无法拆分索引。任何人都有想法让EasySearch.Each与Bootstrap行一起工作吗?

感谢。

1 个答案:

答案 0 :(得分:1)

查看EasySearch.Each做什么(https://github.com/matteodem/meteor-easy-search/blob/master/packages/easysearch:components/lib/each/each.js),您似乎可以使用

index.getComponentMethods().getCursor()

一旦您创建了索引,即只需用上面的代码替换您的查找呼叫,它就可以正常工作。