Autoform插入没有限制

时间:2016-11-05 05:32:04

标签: meteor meteor-autoform simple-schema meteor-collection2

我正在尝试创建一个收集数据的公共autoform。因此,使用该表单的人没有userIds。如何创建没有限制的插入表单?

这是我以前使用过的,但是要求用户注册。

Collection.allow({
  insert: function(userId, doc) {
    return !!userId;
  },
});

1 个答案:

答案 0 :(得分:2)

只需将其更改为:

Collection.allow({
  insert: true,
});

基本上它允许任何人将记录插入数据库。