1
var subscription = Meteor.subscribe("allplayers");
//later
subscription.stop();
//later
subscription.start();
我知道開始()不存在,因爲我已經試過。有不同的方法嗎?
var subscription = Meteor.subscribe("allplayers");
//later
subscription.stop();
//later
subscription.start();
我知道開始()不存在,因爲我已經試過。有不同的方法嗎?
只需重新訂閱發佈即可重新啓動訂閱。
var subscription = Meteor.subscribe("allplayers");
//later - stop subscription
subscription.stop();
//later - restart subscription
subscription = Meteor.subscribe("allplayers");