Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

mongoose save with data from req.body

_ = require("underscore")
var model = new Example(_.extend({ userId: req.user._id }, req.body))

or if you want to copy userId into req.body:

_ = require("underscore")
var model = new Example(_.extend(req.body, { userId: req.user._id }))
 
PREVIOUS NEXT
Tagged: #mongoose #save #data
ADD COMMENT
Topic
Name
9+5 =