0

我正在尝试在 2 个集合之间创建关系,但其中一个集合无法在另一个集合中引用。具体来说,我有 2 个集合:站点和内容类型。这就是它们包括的内容:

// app/lib/collections/sites.js    
Sites = new Mongo.Collection('sites');

Sites.attachSchema(new SimpleSchema({
  name: {
    type: String,
    label: "Name",
    max: 100
  },
  client: {
    type: String,
    label: "Client",
    max: 100
  },
  created: {
    type: Date,
    autoValue: function() {
      if (this.isInsert) {
        return new Date;
      } else if (this.isUpsert) {
        return {$setOnInsert: new Date};
      } else {
        this.unset();  // Prevent user from supplying their own value
      }
    }
  }
}));

这是 ContentTypes 集合:

// app/lib/collections/content_types.js
ContentTypes = new Mongo.Collection('content_types');

ContentTypes.attachSchema(new SimpleSchema({
  name: {
    type: String,
    label: "Name",
    max: 100
  },
  machineName: {
    type: String,
    label: "Machine Name",
    max: 100
  },
  site:{
    type: Sites
  },
  created: {
    type: Date,
    autoValue: function() {
      if (this.isInsert) {
        return new Date;
      } else if (this.isUpsert) {
        return {$setOnInsert: new Date};
      } else {
        this.unset();  // Prevent user from supplying their own value
      }
    }
  }
}));

当我将 Sites 引用添加到 ContentTypes 架构时,应用程序崩溃并出现以下错误:

ReferenceError:站点未在 lib/collections/content_types.js:32:11 中定义

除了this之外,我没有太多运气在 collection2 中找到关系的文档。看起来那里引用的格式应该基于这个线程工作。

4

1 回答 1

1

这是由于 Meteor 加载文件的顺序。请参阅此处的文件加载顺序部分:

有几个负载排序规则。它们按以下优先级顺序应用于应用程序中的所有适用文件:

  1. HTML 模板文件总是在其他所有内容之前加载
  2. 以 main 开头的文件。最后加载
  3. 接下来加载任何 lib/ 目录中的文件
  4. 接下来加载具有更深路径的文件
  5. 然后按整个路径的字母顺序加载文件

例如,将 app/lib/collections/sites.js 重命名为 app/lib/collections/a_sites.js,并且在加载 content_types.js 文件时将定义 Sites 变量。

于 2015-10-07T03:28:13.377 回答