Có vẻ như bạn đang muốn thử chức năng điền mới trong Mongoose.
Sử dụng ví dụ của bạn ở trên:
var Schema = mongoose.Schema,
ObjectId = Schema.ObjectId;
SubdomainSchema = new Schema
name : String
CustphoneSchema = new Schema
phone : String
subdomain : { type: ObjectId, ref: 'SubdomainSchema' }
Tên miền phụ subdomain
trường sẽ được cập nhật bằng '_id' chẳng hạn như:
var newSubdomain = new SubdomainSchema({name: 'Example Domain'})
newSubdomain.save()
var newCustphone = new CustphoneSchema({phone: '123-456-7890', subdomain: newSubdomain._id})
newCustphone.save()
Để thực sự lấy dữ liệu từ subdomain
trường bạn sẽ phải sử dụng cú pháp truy vấn phức tạp hơn một chút:
CustphoneSchema.findOne({}).populate('subdomain').exec(function(err, custPhone) {
// Your callback code where you can access subdomain directly through custPhone.subdomain.name
})