0

リレーションシップとオートフォームを使用した collection2 に関して問題があります。各オブジェクトが正確に 1 つの objectType を持ち、各 objectType に対して複数のオブジェクトを参照できる 1:n の関係を実装しようとしています。

私のスキーマは次のようになります。

// register collections
Objects = new Mongo.Collection('objects');
ObjectTypes = new Mongo.Collection('objectTypes');

// define schema
var Schemas = {};

Schemas.ObjectType = new SimpleSchema({ // object type schema
    name: {
      type: String
    }
});

Schemas.Object = new SimpleSchema({ // object schema
    type: {
        type: ObjectTypes.Schema,
        optional: true
    },
    title: {
        type: String
    }
});

// attach schemas
ObjectTypes.attachSchema(Schemas.ObjectType);
Objects.attachSchema(Schemas.Object);

私のオートフォームは次のようになります。

{{> quickForm collection="Objects" id="insertTestForm" type="insert"}} 

実際には、type 属性の選択オプション フィールドを期待しますが、テキスト入力が表示されます。誰でも理由を知っていますか?

ドキュメント [1] によると、それは選択オプション フィールドである必要があります。

If you use a field that has a type that is a Mongo.Collection instance, autoform will automatically provide select options based on _id and name fields from the related Mongo.Collection. You may override with your own options to use a field other than name or to show a limited subset of all documents. You can also use allowedValues to limit which _ids should be shown in the options list.

[1] https://github.com/aldeed/meteor-collection2/blob/master/RELATIONSHIPS.md#user-content-autoform

編集 私が使用する場合

type: ObjectTypes,

それ以外の

type: ObjectTypes.Schema,

アプリがクラッシュし、次のエラーがスローされます。

Your app is crashing. Here's the latest log.

/Users/XXX/.meteor/packages/meteor-tool/.1.1.3.ik16id++os.osx.x86_64+web.browser+web.cordova/mt-os.osx.x86_64/dev_bundle/server-lib/node_modules/fibers/future.js:245
                        throw(ex);
                              ^
RangeError: Maximum call stack size exceeded
Exited with code: 8
Your application is crashing. Waiting for file change.
4

2 に答える 2