sql >> Databasteknik >  >> NoSQL >> MongoDB

Fyll en mangustmodell med ett fält som inte är ett id

Detta stöds sedan Mongoose 4.5 , och kallas virtuell population .

Du måste definiera dina relationer med främmande nycklar efter dina schemadefinitioner och innan du skapar modeller , så här:

// 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. Använder MongoDB som datakälla i GoLang

  2. show dbs ger inte behörig att utföra kommandofel

  3. golang + redis prestandaproblem med samtidighetsschemaläggaren

  4. MongoDB-skal och server matchar inte