I am trying to submit a form, and it returns { __v: 0, _id: 584640962825c6ace606fe9d } - and I have no idea whats wrong with my Gift.create(newGift. Let me show you my route file:
and this is my form:
So I have 2 issues.
When I submit this form, Im getting: { “_id” : ObjectId(“58464d78b474d7b17b3de44b”), “__v” : 0 }
If I change res.redirect(’/users/’ + req.params.id + ‘/gifts’) to res.redirect(’/users/’ + req.params._id + ‘/gifts’) and the Gift.create to reflect that, req.params._id is undefined.