检测Minimongo是否拒绝收集写入操作

时间:2015-08-14 12:29:50

标签: meteor permissions access-denied minimongo

Meteor应用程序的客户端代码如何检测针对集合的写入操作(insertremoveupdate)被拒绝,以便它可以显示相应的错误消息?

Collection.remove(id)

控制台将显示:

  

删除失败:拒绝访问

1 个答案:

答案 0 :(得分:0)

这是显而易见的,但Google并没有很好地展示relevant documentation:你需要传递一个回调参数:

Collection.remove(id, function (error) {
  if (error)
    sAlert.error(error.toString());
});