Skip to content

Instantly share code, notes, and snippets.

@alyson-b69
Created September 14, 2020 08:05
Show Gist options
  • Save alyson-b69/770de3fda2afdff6533ab46defeaefca to your computer and use it in GitHub Desktop.
Save alyson-b69/770de3fda2afdff6533ab46defeaefca to your computer and use it in GitHub Desktop.
EXPRESS 5 - Méthode DELETE
app.delete("/api/movies/:id", (req, res) => {
const idMovie = req.params.id;
connection.query("DELETE FROM movie WHERE id = ?", [idMovie], (err) => {
if (err) {
console.log(err);
res.status(500).send("Erreur lors de la suppression d'un film");
} else {
res.sendStatus(200);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment