Skip to content

Instantly share code, notes, and snippets.

@justinehell
Created September 13, 2020 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinehell/de391a917a78a0871adb3aecd01b830a to your computer and use it in GitHub Desktop.
Save justinehell/de391a917a78a0871adb3aecd01b830a to your computer and use it in GitHub Desktop.
Express 5 - Méthode DELETE et suppression de données
const express = require("express");
const app = express();
const port = 3000;
const connection = require("./conf");
app.use(express.json());
app.use(
express.urlencoded({
extended: true,
})
);
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("Error when deleting a movie");
} else {
res.sendStatus(200);
}
});
});
app.listen(port, (err) => {
if (err) {
throw new Error("Something bad happened...");
}
console.log(`Server is listening on ${port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment