如何使用Mongo在Express中传递对象元素?

时间:2018-07-06 17:54:23

标签: node.js ejs

我想从ejs模板传递整个对象

例如:

var schema = ... {  姓名:[{

}] }

1 个答案:

答案 0 :(得分:0)

有了这个,您就可以实现,希望这就是您要的...

  notifications: {
    notifiId: {type: Schema.Types.ObjectId, ref: 'Notifications' },
    viewed: { type: Number, default: 0 }
  },

并找到它:

model_Variable.findById(req.params.id).populate("notifiId").exec(function (err, 
callBack) {});

来源:How to populate in this case Mongoose