【发布时间】:2015-09-25 19:57:13
【问题描述】:
我不断收到此错误:
Uncaught Error: Not permitted. Untrusted code may only update documents by ID. [403]
这里是代码:
Template.notifications.events({
'click a.clearAll':function(event){
console.log("hey");
Notifications.update({{userId:Meteor.userId()},{$set:{read:true}},{multi:true});
}
})
我还设置了更新权限:
Notifications.allow({
insert: function(){
return true;
},
update: function(){
return true;
}
});
为什么不让我更新?
【问题讨论】:
标签: javascript mongodb meteor