3

Meteor の todos の例は問題なく動作します。ただし、Todos および Lists コレクションにスキーマを追加すると、「エラー: リスト ID はオブジェクトである必要があります」というメッセージが引き続き表示されます。どんな助けでも大歓迎です。

追加されたのは: meteor add aldeed:simple-schema meteor add aldeed:collection2

collections.js ファイルに追加された新しいスキーマは次のとおりです。

Lists = new Mongo.Collection('lists');

var Schema = {};

Schema.Lists = new SimpleSchema({
  name: {
    type: String
  },
  incompleteCount: {
    type: Number
  }
});

Lists.attachSchema(Schema.Lists);

Todos = new Mongo.Collection('todos');

Schema.Todos = new SimpleSchema({
  listId: {
    type: Object
  },
  text: {
    type: String
  },
  createdAt: {
    type: Date
  }
});

Todos.attachSchema(Schema.Todos);

他に何も変わっていません。

メテオを始める前に、「メテオリセット」をしました。

新しいリストの _id (list_id) を Todos スキーマの listId オブジェクトにアタッチしようとすると、bootstrap.js ファイルから次のエラーが発生します。. . {name: "Favorite Scientists", items: ["Ada Lovelace", "Grace Hopper", "Marie Curie", "Carl Friedrich Gauss", "Nikola Tesla", "Claude Shannon" ] } ];

     var timestamp = (new Date()).getTime();
     _.each(data, function(list) {
       var list_id = Lists.insert({name: list.name,
         incompleteCount: list.items.length});

       _.each(list.items, function(text) {     //line 43
         Todos.insert({listId: list_id,        //line 44
                       text: text,
                       createdAt: new Date(timestamp)});
         timestamp += 1; // ensure unique timestamp.
       });
     });

(STDERR)                        throw(ex);
(STDERR)                              ^
(STDERR) Error: List id must be an object
(STDERR)     at getErrorObject (meteor://💻app/packages/aldeed_collection2-core/lib/collection2.js:345:1)
(STDERR)     at [object Object].doValidate (meteor://💻app/packages/aldeed_collection2-core/lib/collection2.js:328:1)
(STDERR)     at [object Object].Mongo.Collection.(anonymous function) [as insert] (meteor://💻app/packages/aldeed_collection2-core/lib/collection2.js:83:1)
(STDERR)     at meteor://💻app/server/bootstrap.js:44:1
(STDERR)     at Array.forEach (native)
(STDERR)     at Function._.each._.forEach (meteor://💻app/packages/underscore/underscore.js:105:1)
(STDERR)     at meteor://💻app/server/bootstrap.js:43:1
(STDERR)     at Array.forEach (native)
(STDERR)     at Function._.each._.forEach (meteor://💻app/packages/underscore/underscore.js:105:1)
(STDERR)     at meteor://💻app/server/bootstrap.js:39:1

=> Meteor サーバーが再起動しました => アプリを起動しました。

4

1 に答える 1

0

Lists.insert()新しく作成されたオブジェクトの _id を文字列で返すため、 list_id 変数は文字列を返し、スキーマを無効にします。Schema.Todos の listId タイプを Object ではなく String に変更します。

Todos = new Mongo.Collection('todos');

Schema.Todos = new SimpleSchema({
  listId: {
    type: String
  },
  text: {
    type: String
  },
  createdAt: {
    type: Date
  }
});
于 2016-02-09T01:12:39.690 に答える