流星服務器導致集合更新,該更新還更新集合的客戶端副本。
只要集合的客戶端副本中的記錄得到更新,是否有方法來調用客戶端函數?由於流星客戶端mongodb發生變化
//server
Meteor.users.update({
_id: Meteor.userId()
}, {
$set: {
'profile.goAhead': true
});
//client
if (Meteor.user().profile.goAhead) {
myFunc();
}
這看起來像一個(近)重複http://stackoverflow.com/questions/29596256/meteor-run-a-function-when-a-mongo-collection-的得到更新 –