在流星模板輔助函數中,如果我返回find
與fetch
的結果,在性能,重新渲染數量或其他任何方面是否有區別?流星使用獲取或找到模板幫助函數?
例如,發現方法:
Template.players.topScorers = function() {
return Users.find({score: {$gt: 100}}, {sort: {score: -1}});
};
或添加抓取:
Template.players.topScorers = function() {
return Users.find({score: {$gt: 100}}, {sort: {score: -1}}).fetch();
};
這一發現,唯一的方法是什麼是目前在docs,但我見過很多的其他人使用fetch
。