Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

How to access the request body when POSTing using Node.js and Express

const express = require('express');

const app = express();

app.use(express.json({extended: false})); //This is the line that you want to add

app.post('/postroute', (req, res) => {
    console.log('body :', req.body);
    res.sendStatus(200);
});
 
PREVIOUS NEXT
Tagged: #How #access #request #body #POSTing #Express
ADD COMMENT
Topic
Name
6+5 =