javascript - How can I tell why Meteor autorun is triggered -
i found tracker.autorun
runs multiple times, , don't know why, there way find out reactive computation triggered autorun
?
tracker.autorun(function(comp) { comp.oninvalidate(function() { console.trace(); }); // autorun code here });
Comments
Post a Comment