私のコードの下を見つけてください
var mongoose = require('mongoose');
var util = require('util');
var db = mongoose.connect('mongodb://localhost:27017/prats', function(err) {
if (err) throw err;} //this does not get printed
);
mongoose.connection.on("open", function(){
console.log("mongodb is connected")} //this gets printed
);
var Schema = mongoose.Schema;
var TestDocumentAccessSchema = new Schema({
documentId: { type: Schema.ObjectId },
userId: { type : String }, // Can be an SSO or a group (DL) id
userName: { type : String },
});
var TestDocumentMasterSchema = new Schema({
documentId: { type: Schema.ObjectId, ref: 'TestDocumentAccess'},
masterId: { type: Schema.ObjectId }
});
var TestDocAccess = mongoose.model('TestDocumentAccess', TestDocumentAccessSchema);
var TestDocMaster = mongoose.model('TestDocumentMaster', TestDocumentMasterSchema);
var document = new TestDocAccess(
{ documentId: '50dc37d6022b2bdd07000004',
userId : "1234",
userName : "Test Name",
}
);
document.save(function (err) {
if (err) return handleError(err);
var master = new TestDocMaster({
documentId: "50dc37d6022b2bdd07000004",
masterId: "50a5e7bcda3c4d557f00847a" // assign an ObjectId
});
master.save(function (err) {
if (err) return handleError(err);
console.log("That's it save success!!....");
TestDocMaster.find({'masterId': '50a5e7bcda3c4d557f00847a'})
.populate('documentId')
.exec(function(err, TestDocAccess) {
//I want all the document row corresponding to the master Id
console.log("=========Test Doc Master======" +util.inspect(TestDocAccess.documentId));
});
});
})
マスターIDに対応する複数のドキュメントIDがあり、TestDocAccess.documentId内のすべてのドキュメントの詳細を期待していますが、未定義の..を取得しています。
上記のコードの何が問題になっているのか教えてください。