Meteor应用程序的客户端代码如何检测针对集合的写入操作(insert
,remove
,update
)被拒绝,以便它可以显示相应的错误消息?
Collection.remove(id)
控制台将显示:
删除失败:拒绝访问
答案 0 :(得分:0)
这是显而易见的,但Google并没有很好地展示relevant documentation:你需要传递一个回调参数:
Collection.remove(id, function (error) {
if (error)
sAlert.error(error.toString());
});