Posts by Celso Hashimoto • 1 point
1 post
-
0
votes2
answers216
viewsA: Express - req.body does not find the data sent by the customer
How your express is configured? You can use the bodyparser to be able to receive the data. You can apply this way here: const express = require('express'); const app = express();…