在我更新了所有Meteor软件包后,我的文档编辑器的remove-function不再起作用了。我认为这是由我的代码部分引起的。 Meteor现在运行在1.1.0.2
我的代码出了什么问题?
return Meteor.call("removeDocument", id);
答案 0 :(得分:0)
你应该提供一个回调来检查发生了什么。
return Meteor.call("removeDocument", id, function(err, result) {
if (err) {
console.log(err);
} else {
console.log(result);
}
});