Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var updatePost = function (req, res){
  2.  
  3.     var title   = req.params.title,
  4.         content   = req.params.content,
  5.         id        = req.params.postId;
  6.         console.log(req.body);
  7.     blogPost.update({
  8.         title:title,
  9.         content: content
  10.     },{
  11.         where: { id : id }
  12.     }).then(function() {
  13.         console.log('went weell');
  14.     });
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement