sql >> データベース >  >> NoSQL >> MongoDB

MongodbとExpress

    http://mongoosejs.com/docs/populate.html 非常に良い例で詳しく説明します。ここで要点を抽出しました

    {
    var personSchema = Schema({
      _id     : Number,
      name    : String,
      age     : Number,
      stories : [{ type: Schema.Types.ObjectId, ref: 'Story' }]
    });
    
    var storySchema = Schema({
      _creator : { type: Number, ref: 'Person' },
      title    : String,
      fans     : [{ type: Number, ref: 'Person' }]
    });
    
    var Story  = mongoose.model('Story', storySchema);
    var Person = mongoose.model('Person', personSchema);
    
    }
    

    これで、ストーリーと人物の2つのモデルが作成され、ストーリーは_creatorフィールドを介して人物を参照します。

    ストーリーをクエリしながら_creatorにデータを入力するには、次のようにします。

    {
    
    Story
    .findOne({ title: 'Once upon a timex.' })
    .populate('_creator')
    .exec(function (err, story) {
      if (err) return handleError(err);
      console.log('The creator is %s', story._creator.name);
      // prints "The creator is Aaron"
    });
    }
    

    ただし、レコードを正しく取得するには、レコードが正しく保存されていることも確認する必要があります。保存中に、_idを割り当てる必要があります。以下を参照してください。

    {
    var aaron = new Person({ _id: 0, name: 'Aaron', age: 100 });
    
    aaron.save(function (err) {
      if (err) return handleError(err);
    
      var story1 = new Story({
        title: "Once upon a timex.",
        _creator: aaron._id    // assign the _id from the person
      });
    
      story1.save(function (err) {
        if (err) return handleError(err);
        // thats it!
      });
    });
    
    }
    



    1. UTCのDateTimeを現地時間に変換しますか?

    2. マングース検証外部キー(参照)

    3. 特定の時間にのみMongoDB検索をクエリする

    4. コレクション内のMongoDB検索