流星版1.0.4 我删除了自动发布和不安全 允许和拒绝对集合进行正常工作,但对FS.Collection不适用
我有这个FS系列:
Avatars = new FS.Collection(“avatars”,{stores:[new FS.Store.FileSystem(“avatars”,{path:'PATH_TO_FILES'})]});
在服务器端:
Avatars.allow({
download:function(userId,doc){
...
},
insert: function(userId,doc){
console.log("just to check");
return userId
},
update....
});
但是在客户端使用Avatars.insert时,不会调用allow
我发现没有错误,但发出以下警告: Meteor._wrapAsync已重命名为Meteor.wrapAsync
感谢您的帮助
克里斯托弗