Skip to content

Instantly share code, notes, and snippets.

@nurfarazi
Created April 3, 2016 07:51
Show Gist options
  • Save nurfarazi/1eafee9a219f9af872b94be07a1f9acc to your computer and use it in GitHub Desktop.
Save nurfarazi/1eafee9a219f9af872b94be07a1f9acc to your computer and use it in GitHub Desktop.
Student.findByIdAndUpdate(
req.body._id, {
$push: {
"comments": req.body.imagelink
}
},
function (err, model) {
if (err) {
console.log(err);
res.send(err);
next();
} else {
res.json(model);
next();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment