Meteor 应用程序未将元素插入集合中

Meteor app not inserting elements into collection

我正在学习 Meteor JS,并按照教程构建了一个菜单生成器购物清单。我正在尝试为其添加一些功能。我成功添加了一个功能,但现在我正在尝试创建一个组织功能,用户可以在其中加入一个组织并查看与该组织相关的所有购物清单。第一步是允许用户添加组织。

表单出现,我可以从控制台插入到数据库中,但是当我使用自动表单时,对象没有被插入到数据库中。

我最近从 Meteor 1.3 升级到 1.4。我不认为这是一个问题,因为应用程序上的所有其他表格仍在正确插入。

我感觉这与subscribe/publish有关,但我不确定我做错了什么。

HTML- neworganization.html

        <template name='NewOrganization'>
    <div class='new-organization-container'>

        <i class='fa fa-close'></i>

          {{#autoForm collection='Organizations' id='insertOrganizationForm'  type='insert'}}
<div class='form-group'>
      {{> afQuickField name='organization'}}
      </div>
      <div class='form-group'>
      {{> afQuickField name='members'}}
      </div>



    <button type="submit" class="btn btn-primary">Add</button>
  {{/autoForm}}

    </div>


</template>

organizations.html

<template name='Organizations'>
<h3>Your Organizations</h3>
{{#if $.Session.get 'newOrganization'}}
        {{> NewOrganization }}
{{else}}
<button class='btn btn-organization btn-primary'>Add an Organization</button>
<button class='btn btn-join'>Join an Organization</button>
<button class='btn btn-deny'>Leave an Organization</button>
{{/if}}
<section class='organization-list'>
        {{#if Template.subscriptionsReady}}
        {{#each organizationList}}
            {{> OrganizationItem}}
        {{/each}}
    {{else}}
        <p>Loading...</p>
    {{/if}}

JS- organizations.js

Template.Organizations.onCreated(function() {
  this.autorun(() => {
    this.subscribe('organizations');
  });
});

Template.Organizations.helpers({
    organizations()  {
        return Organizations.find({});
    }
});


Template.Organizations.events({
      'click .btn-organization': () => {
        Session.set('newOrganization', true);
      }
});

Template.NewOrganization.helpers({
    organizationList: () => {

      var organizationItems = Organizations.find({});

        return organizationItems;
    }
});

newOrganization.js

    if (Meteor.isClient) {
    Meteor.subscribe('organizations');
} 
Template.NewOrganization.events ({
    'click .fa-close': function () {
        Session.set('newOrganization', false);
    }
});

collections/organizations.js

    import SimpleSchema from 'simpl-schema';
SimpleSchema.extendOptions(['autoform']);


Organizations = new Mongo.Collection('organizations');

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


OrganizationSchema = new SimpleSchema ({
    organization: {
        label: "Organization Name",
        type: String
    },
    id: {
        label: "ID",
        type: String,
        autoform: {
            type: "hidden"
        }

    },
    members: {
        type: Array
    },
        "members.$": Object,
        "members.$.name": String,
        "members.$.role": String,
          inOrganization: {
            type: Boolean,
            defaultValue: true,

            autoform: {
                type: 'hidden'
            }
      },

    createdAt: {
        type: Date,
        label: "CreatedAt",
        autoform: {
            type: "hidden"
        },
        autoValue: function() {
            return new Date();
        }
    }
});

Meteor.methods({
    deleteOrganizations: function(id) {
        Organizations.remove(id);
    }
});

Organizations.attachSchema(OrganizationSchema);

问题在于模式的设计方式。我在架构中插入了一个 id。我的理由是我希望有一种方法可以在组织中添加和删除成员。我没有考虑到的是 Mongo 会自动为数据库对象生成一个 id,并且通过以这种方式设计我的模式,我正在制造冲突。我从架构中删除了 id 并解决了问题。

这是新的 collections/organizations.js 文件:

import SimpleSchema from 'simpl-schema';
SimpleSchema.extendOptions(['autoform']);

Organizations = new Mongo.Collection('organizations');

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


OrganizationSchema = new SimpleSchema ({
    organization: {
        label: "Organization Name",
        type: String
    },
    members: {
        type: Array
    },
        "members.$": Object,
        "members.$.name": String,
        "members.$.role": String,

          inOrganization: {
            type: Boolean,
            defaultValue: true,

            autoform: {
                type: 'hidden'
            }
      },

    createdAt: {
        type: Date,
        label: "CreatedAt",
        autoform: {
            type: "hidden"
        },
        autoValue: function() {
            return new Date();
        }
    }
});

Meteor.methods({
    deleteOrganizations: function(id) {
        Organizations.remove(id);
    }
});

SimpleSchema.debug = true;

Organizations.attachSchema(OrganizationSchema);