仅在客户端收集流星的crud操作

时间:2015-01-28 11:37:49

标签: meteor minimongo

我只有一个客户端集合

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;
    }
 });

1 个答案:

答案 0 :(得分:2)

对仅客户端集合用户_collection

执行crud操作

feedComments._collection.update({_id:result._id},{$set:{name:"xxx"}});