は、ノードのためのマングースを見てみましょう。エクスプレスアプリケーション用のモデルを定義することができます。 .populate()を使用すると、RDBMSシステム上の外部キーとなるものを効果的に結合できます。他のドキュメントへ
http://mongoosejs.com/docs/populate.html
var mongoose = require('mongoose')
, Schema = mongoose.Schema
var PersonSchema = new Schema({
name : String,
age : Number,
stories : [{ type: Schema.Types.ObjectId, ref: 'Story' }]
});
var StorySchema = new Schema({
_creator : { type: Schema.Types.ObjectId, ref: 'Person' },
title : String,
fans : [{ type: Schema.Types.ObjectId, ref: 'Person' }]
});
var Story = mongoose.model('Story', StorySchema);
var Person = mongoose.model('Person', PersonSchema);
保存、参考文献
保存、参考文献普段ばかりのObjectIdの割り当て、たObjectIdを保存すると同じように動作します:
var aaron = new Person({ 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 an ObjectId
});
story1.save(function (err) {
if (err) return handleError(err);
// thats it!
});
})
人口
ので、私たちは特別なことをしていません。私たちは単に人物と物語を作りました。今度は、私たちの物語の_CREATORの移入を見てみましょう:
Story
.findOne({ title: /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"
})