यह एक ज्ञात समस्या हो सकती है, मुझे यकीन नहीं है क्योंकि मैंने इसे स्वयं नहीं किया है, लेकिन ऐसा लगता है कि कोई समाधान हो सकता है (देखें https://github.com/meteor/meteor/issues/907 )
अपना Meteor.call
Add जोड़ें तात्कालिक सेटटाइमआउट कॉलबैक में:
added: function(doc) {
console.log("added "+doc.text);
setTimeout(function() {
Meteor.call('aMethod',doc.text,function(e,r){
if(e){
console.log("error from server: "+e);
}else{
console.log("response from server: "+r);
}
});
},0);
}