web-dev-qa-db-ja.com

マングースバーチャルポピュレート

プロジェクトにサークルモデルがあります。

var circleSchema = new Schema({
//circleId: {type: String, unique: true, required: true},
patientID: {type: Schema.Types.ObjectId, ref: "patient"},
circleName: String,
caregivers: [{type: Schema.Types.ObjectId}],
accessLevel: Schema.Types.Mixed
});

circleSchema.virtual('caregiver_details',{
    ref: 'caregiver',
    localField: 'caregivers',
    foreignField: 'userId'
});

介護者スキーマ:

var cargiverSchema = new Schema({
    userId: {type: Schema.ObjectId, unique: true},  //objectId of user document
    detailId: {type: Schema.ObjectId, ref: "contactDetails"},
    facialId: {type: Schema.ObjectId, ref: "facialLibrary"}, //single image will be enough when using AWS rekognition
    circleId: [{type: Schema.Types.ObjectId, ref: "circle"}],           //multiple circles can be present array of object id
});

サンプルオブジェクト:

{ 
    "_id" : ObjectId("58cf4832a96e0e3d9cec6918"), 
    "patientID" : ObjectId("58fea8ce91f54540c4afa3b4"), 
    "circleName" : "circle1", 
    "caregivers" : [
        ObjectId("58fea81791f54540c4afa3b3"), 
        ObjectId("58fea7ca91f54540c4afa3b2")
    ], 
    "accessLevel" : {
        "location\"" : true, 
        "notes" : false, 
        "vitals" : true
    }
}

Mongoosejsの仮想入力を試しましたが、機能させることができません。これはまったく同じ問題のようです: https://github.com/Automattic/mongoose/issues/4585

circle.find({"patientID": req.user._id}).populate('caregivers').exec(function(err, items){
        if(err){console.log(err); return next(err) }
        res.json(200,items);
    });

結果のオブジェクトIDのみを取得しています。実装されていません。

16
Himanshu Jain

問題が何であるかを理解しました。デフォルトでは、仮想フィールドは出力に含まれません。これをサークルスキーマに追加した後:

circleSchema.virtual('caregiver_details',{
    ref: 'caregiver',
    localField: 'caregivers',
    foreignField: 'userId'
});

circleSchema.set('toObject', { virtuals: true });
circleSchema.set('toJSON', { virtuals: true });

今では完全に動作します。

29
Himanshu Jain

ExpressJsres.jsonメソッドを使用する場合、追加するだけで十分です。

yourSchema.set('toJSON', { virtuals: true });

または、直接使用できます toJSON/toObject

doc.toObject({ virtuals: true })) // or doc.toJSON({ virtuals: true }))
1
zemil