我试图理解我何时可以用这个.flush () 在气象应用中。
医生说:
Call inside publish function. Sends all the pending set, unset, and complete messages to the client.
如果我的出版功能是这样的
Meteor.publish( myCollection , function(myid){
return MyCollection.find({_id: myid});
});
我会用这个吗. flush ()?
使用此. flush () 的哪种情况?
Thanks S