2014-12-05 167 views

回答

1

這是什麼在起作用:

Template.all.helpers({ 
    linkList: function() { 
    var everything = *yourCollection*.find().fetch(); 
    var *yourUniqueFieldItems* = _.pluck(everything,"*YourField*"); 
     return _.uniq(*yourUniqueFieldItems*); 
    }, 

頂部投票答案在這裏:Meteor: how to search for only distinct field values aka a collection.distinct("fieldname") similar to Mongo's不起作用,但帖子的作者發現了一個解決方案自己。不幸的是,它被埋在評論中,而不是真正的答案。

相關問題