Last active
September 13, 2020 13:26
-
-
Save justinehell/564fa39af18327704b340f60915066f1 to your computer and use it in GitHub Desktop.
Express 4 - Méthode PUT et modification de données
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.put("/api/movies/:id", (req, res) => { | |
const idMovie = req.params.id; | |
const formData = req.body; | |
connection.query( | |
"UPDATE movie SET ? WHERE id = ?", | |
[formData, idMovie], | |
(err) => { | |
if (err) { | |
console.log(err); | |
res.status(500).send("Error when modifying 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