Closed thearabbit closed 9 years ago
@thearabbit if you want to push data from the server to the client, you should use Meteor.publish
and Meteor.subscribe
. That's what they are for. This package is only for requesting data, which means later updates are not pushed.
Thanks, I want to generate reports the related with many collections So I can't use pu/sub. Have any way to do???
You can publish several collections at once with a publication. You can also use a custom publication to publish transformed data: http://docs.meteor.com/#/full/meteor_publish
Check out how to use this.added
/this.changed
. It's not super easy to use, but it's designed for this particular case.
Thanks again, I will check it.
I have
Don't auto update, when I update collection. Please help me.