问题 This may have been asked before but I can't seem to find a solution, so apologies if this is the case. I have a simple node app in development which uses express. One of the post routes returns a http 204 and sends it, below is my code: router.post("/:id", function(req, res, next) { if (!req.session.userId) { res.status(204).send(); } else { console.log(req.params.id); User.findById(req.session.userId, function (err, user) { if (err) return handleError(err); const nameForDatabase = req.params