Sepertinya Anda ingin mencoba fungsionalitas populate baru di Mongoose.
Menggunakan contoh Anda di atas:
var Schema = mongoose.Schema,
ObjectId = Schema.ObjectId;
SubdomainSchema = new Schema
name : String
CustphoneSchema = new Schema
phone : String
subdomain : { type: ObjectId, ref: 'SubdomainSchema' }
subdomain
bidang akan diperbarui dengan '_id' seperti:
var newSubdomain = new SubdomainSchema({name: 'Example Domain'})
newSubdomain.save()
var newCustphone = new CustphoneSchema({phone: '123-456-7890', subdomain: newSubdomain._id})
newCustphone.save()
Untuk benar-benar mendapatkan data dari subdomain
bidang Anda harus menggunakan sintaks kueri yang sedikit lebih rumit:
CustphoneSchema.findOne({}).populate('subdomain').exec(function(err, custPhone) {
// Your callback code where you can access subdomain directly through custPhone.subdomain.name
})