外键猫鼬

dev*_*987 30 mongoose mongodb node.js

我从mongoose开始,我想知道如何进行这种配置:

在此输入图像描述

食谱有不同的成分

我有两个型号:

成分和配方:

var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var IngredientSchema = new Schema({
    name: String
});

module.exports = mongoose.model('Ingredient', IngredientSchema);


var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var RecipeSchema = new Schema({
    name: String
});

module.exports = mongoose.model('Recipe', RecipeSchema);
Run Code Online (Sandbox Code Playgroud)

Tim*_*Tim 54

检查下面的更新代码,特别是这部分:{type:Schema.Types.ObjectId,ref:'Ingredient'}

var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var IngredientSchema = new Schema({
    name: String
});

module.exports = mongoose.model('Ingredient', IngredientSchema);


var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var RecipeSchema = new Schema({
    name: String,
    ingredients:[
      {type: Schema.Types.ObjectId, ref: 'Ingredient'}
    ]
});

module.exports = mongoose.model('Recipe', RecipeSchema);
Run Code Online (Sandbox Code Playgroud)

保存:

var r = new Recipe();

r.name = 'Blah';
r.ingredients.push('mongo id of ingredient');

r.save();
Run Code Online (Sandbox Code Playgroud)