iamshaunjp / rest-api-playlist

Course files for the REST API tutorial series on The Net Ninja Youtube channel
170 stars 168 forks source link

For updating #2

Open Liqiankun opened 7 years ago

Liqiankun commented 7 years ago
Book.findByIdAndUpdate(req.params.id, req.body, { new: true }, function (err, book) {
    if (err) {
      next(err)
    } else {
      res.json(book)
    }
  })