“Express Post Body” Code-Antworten

Express Post Body

app.use(express.json()); 
// ...
app.post('/test-page', function(req, res) {
    var name = req.body.name,
        color = req.body.color;
    // ...
});
GutoTrosla

So analysieren Sie Postanfragen mit Express -NodeJs

const express = require('express');
const bodyParser = require('body-parser');

const app = express();
app.use(bodyParser.urlencoded({ extended: true }));

app.post('/post-test', (req, res) => {
    console.log('Got body:', req.body);
    res.sendStatus(200);
});

app.listen(8080, () => console.log(`Started server at http://localhost:8080!`));
m1ke510a

So greifen Sie auf die Anforderungsbehörde beim Posten mit Node.js und Express zu

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);
});
Batman

Ähnliche Antworten wie “Express Post Body”

Fragen ähnlich wie “Express Post Body”

Weitere verwandte Antworten zu “Express Post Body” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen