I'm using mongoose (on node) and I'm trying to add some additional fields to a model on save by using Mongoose middleware.
I'm taking the often-used case of wanting to add a lastmodifiedsince-date.
However, I also want to automatically add the name/profilelink of the user which has done the save.
schema.pre('save', function (next) {
this.lasteditby=req.user.name; //how to get to 'req'?
this.lasteditdate = new Date();
next()
})
I'm using passport - http://passportjs.org/ - which results in req.user being present, req
of course being the http-request.
Thanks
EDIT
I've defined pre
on an embedded schema, while I'm calling save
on that parent of the embedded instance. The solution posted below (passing arg as the first param of save) works on the non-embedded case, but not on mine.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…