Meteor: How to trigger reRun of helper function after collectionHandle.ready() is true
问题 This a new version of my old question: So thanks to Tom Coleman's help I finally figured out on how to properly check if a subscription is ready() or not. My current code structure looks like this: /client/app.js: eventsHandle = null; groupsHandle = null; // ... // First Deps.autorun(): // Does not depend on any Session var, should just run every time Deps.autorun(function() { eventsHandle = Meteor.subscribe("events", function() { console.log('Deps.autorun(): Events loaded'); }); }); //