2

何が間違っているのかわかりません...マングースモデルでサブドキュメントを定義しようとしていますが、スキーマ定義を別のファイルに分割すると、子モデルが尊重されません。

最初に、コメント スキーマを定義します。

var CommentSchema = new Schema({
    "text": { type: String },
    "created_on": { type: Date, default: Date.now }
});
mongoose.model('Comment', CommentSchema);

次に、mongoose.model() からロードして別のスキーマを作成します (別のファイルからロードするように)

var CommentSchema2 = mongoose.model('Comment').Schema;

親スキーマを定義中:

var PostSchema = new Schema({
    "title": { type: String },
    "content": { type: String },
    "comments": [ CommentSchema ],
    "comments2": [ CommentSchema2 ]
});
var Post = mongoose.model('Post', PostSchema);

そしていくつかのテスト

var post = new Post({
    title: "Hey !",
    content: "nothing else matter"
});

console.log(post.comments);  // []
console.log(post.comments2); // [ ]  // <-- space difference

post.comments.unshift({ text: 'JOHN' }); 
post.comments2.unshift({ text: 'MICHAEL' }); 

console.log(post.comments);  // [{ text: 'JOHN', _id: 507cc0511ef63d7f0c000003,  created_on: Tue Oct 16 2012 04:07:13 GMT+0200 (CEST) }]
console.log(post.comments2); // [ [object Object] ] 

post.save(function(err, post){

    post.comments.unshift({ text: 'DOE' });
    post.comments2.unshift({ text: 'JONES' });

    console.log(post.comments[0]); // { text: 'DOE', _id: 507cbecd71637fb30a000003,  created_on: Tue Oct 16 2012 04:07:13 GMT+0200 (CEST) } // :-)
    console.log(post.comments2[0]); // { text: 'JONES' }  // :'-(

    post.save(function (err, p) {
        if (err) return handleError(err)

        console.log(p);
    /*
    { __v: 1,
      title: 'Hey !',
      content: 'nothing else matter',
      _id: 507cc151326266ea0d000002,
      comments2: [ { text: 'JONES' }, { text: 'MICHAEL' } ],
      comments:
       [ { text: 'DOE',
           _id: 507cc151326266ea0d000004,
           created_on: Tue Oct 16 2012 04:07:13 GMT+0200 (CEST) },
         { text: 'JOHN',
           _id: 507cc151326266ea0d000003,
           created_on: Tue Oct 16 2012 04:07:13 GMT+0200 (CEST) } ] }
    */

        p.remove();
    });    
});

ご覧のとおり、CommentSchema では、ID とデフォルト プロパティが正しく設定されています。しかし、読み込まれた CommentSchema2 ではうまくいきません。

「人口」バージョンを使用しようとしましたが、探しているものではありません。別のコレクションを使用する必要はありません。

あなたの誰かが何が悪いのか知っていますか?ありがとう !

マングース v3.3.1

nodejs v0.8.12

完全な要点: https://gist.github.com/de43219d01f0266d1adf

4

1 に答える 1

1

モデルの Schema オブジェクトには、Model.schemaではなくとしてアクセスできますModel.Schema

したがって、gist の 20 行目を次のように変更します。

var CommentSchema2 = mongoose.model('Comment').schema;
于 2012-10-16T03:17:49.920 に答える