これが私のスキーマです:
var UserSchema = new Schema({
email: String,
name: String,
city: String,
username: String,
profilePic: String,
phoneNo: Number,
shortList: {
project: [{ type: Schema.ObjectId, ref: "Project" }],
flat: [{ type: Schema.ObjectId, ref: "Flat" }],
},
});
var FlatSchema = new Schema({
project: { type: Schema.ObjectId, ref: "Project" },
status: String,
floor: Number,
size: String,
type: String,
flat_number: String,
price: Number,
flooringType: String,
createdAt: { type: Date, 'default': Date.now },
isDeleted: { type: Boolean, 'default': false },
});
var ProjectSchema = new Schema({
name: String,
shortName: String,
developer: { type: Schema.ObjectId, ref: "Developer" },
address: {
street_address: String,
city: String,
state: String,
pin: Number,
position: {
lat: Number,
long: Number
}
},
ofcAddress: {
street_address: String,
city: String,
state: String,
pin: Number,
},
overview: {
size: String,
area: String,
configuration: String,
possession_starts: Date,
info: String,
aminities: [{ type: Schema.ObjectId, ref: "Amenity" }]
},
images: {
hdpi: String,
xhdpi: String,
web: String,
mdpi: String
},
});
ここにuserflatモデルとのリンクshortList.flatおよびflatモデルはproject
今私は次のようにすべての詳細を選択しようとしています:
User.findById(req.params.id)
.populate('shortList.project', { 'CalculationsRules': 0, 'KBFlatTypeCharges': 0, 'CategoryPremia': 0, 'Floor': 0, 'KBUnitType': 0, 'floorplans': 0, 'flats': 0, 'towers': 0, 'galaryImages': 0 })
.populate('shortList.flat', { 'pricedetails': 0 })
.exec((err, user) => {
if (err) { return handleError(res, err); }
if (!user) { return res.json(401); }
//here i want to select specific field from project model
User.populate(user, { path: 'shortList.flat.project', model: 'Project' }, (err, user) => {
res.status(200).json(user);
})
});
正常に機能していますが、名前や画像などのプロジェクトモデルから特定のフィールドをいくつか選択したいと思います
選択プロパティを使用して、次のように入力します。
User.populate(user, { path: 'shortList.flat.project', model: 'Project', select: 'name' })
これにより、プロジェクトの名前のみが表示されます。
不要なフィールドを指定するには、次のようにゼロにできます。
User.populate(user, { path: 'shortList.flat.project', model: 'Project', select: { 'name': 0, 'Floor': 0, 'flats': 0, 'towers': 0,} }
これは私にとってはうまくいきます。
そしてあなたが2つのレベルの人口をしているなら:
次のように簡単に実行できます。
populate('project.tower', 'name project flats');
特定のフィールドを取得する単純な入力の場合:
populate('project', 'name')
これを試してください:
applicantListToExport: function (query, callback) {
this
.find(query).select({'advtId': 0})
.populate({
path: 'influId',
model: 'influencer',
select: { '_id': 1,'user':1},
populate: {
path: 'userid',
model: 'User'
}
})
.populate('campaignId',{'campaignTitle':1})
.exec(callback);
}