MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Wypełnij model mangusty polem, które nie jest identyfikatorem

Jest to obsługiwane od Mongoose 4.5 i nazywa się populacją wirtualną .

Musisz zdefiniować swoje relacje z kluczami zagranicznymi po definicjach schematów i przed tworzeniem modeli , tak:

// Schema definitions

BookSchema = new mongoose.Schema({
        ...,
        title: String,
        authorId: Number,
        ...
    },
    // schema options: Don't forget this option
    // if you declare foreign keys for this schema afterwards.
    {
        toObject: {virtuals:true},
        // use if your results might be retrieved as JSON
        // see http://stackoverflow.com/q/13133911/488666
        //toJSON: {virtuals:true} 
    });

PersonSchema = new mongoose.Schema({id: Number, ...});


// Foreign keys definitions

BookSchema.virtual('author', {
  ref: 'Person',
  localField: 'authorId',
  foreignField: 'id',
  justOne: true // for many-to-1 relationships
});


// Models creation

var Book = mongoose.model('Book', BookSchema);
var Person = mongoose.model('Person', PersonSchema);


// Querying

Book.find({...})
    // if you use select() be sure to include the foreign key field !
    .select({.... authorId ....}) 
    // use the 'virtual population' name
    .populate('author')
    .exec(function(err, books) {...})


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Jak zapisać plik w MongoDB?

  2. Korzystanie z przechowywanych funkcji JavaScript w potoku agregacji, MapReduce lub runCommand

  3. Śledzić wydajność MongoDB?

  4. Jak ustawić funkcjęKompatybilnośćWersja w MongoDB

  5. Nie można zdeserializować PyMongo ObjectId z JSON