我只有一个客户端集合
feedComments=new Mongo.Collection('feeds');
使用meteor复合材料我会向此系列发布少量记录,
当我尝试更新客户端
中的集合时feedComments.update({_id:result._id},{$set:{name:"xxx"}});
它不允许我抛出错误
method not found
为什么我无法插入或更新仅客户端集合,为什么客户端集合不具备这些方法?
不知道可以做到这一点,但我也试过这个
feedComments.allow({
insert: function (userId, doc) {
return true;
},
update: function (userId, doc, fields, modifier) {
return false;
},
remove: function (userId, doc) {
return false;
}
});
答案 0 :(得分:2)
对仅客户端集合用户_collection
试
feedComments._collection.update({_id:result._id},{$set:{name:"xxx"}});