Meteor 版本 1.0.4 我删除了自动发布和不安全的允许和拒绝对 Collections 工作正常,但对 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
谢谢您的帮助
克里斯托夫