“Bodyparser ist veraltet” Code-Antworten

Bodyparser veraltet

The package bodyParser is deprecated. You will get this warning with these lines of code:

app.use(bodyparser.json()); 
app.use(bodyParser.urlencoded({extended: true}));

If you are using Express 4.16+ you can now replace those lines with:

app.use(express.json()); 
app.use(express.urlencoded()); //Parse URL-encoded bodies
Fancy Ferret

Bodyparser ist veraltet.

// If you are using Express 4.16+ you don't have to import body-parser anymore. 
// You can do it just like this:

app.use(express.urlencoded({extended: true}));
app.use(express.json()) // To parse the incoming requests with JSON payloads
MassimoMx

Körperparser veraltet

const express = require('express');

app.use(express.urlencoded({ extended: true }));
app.use(express.json());
Ashamed Ape

Body-Parser-veralteter Bodyparser

app.use(bodyParser.urlencoded({ extended: true }))
JulesG10

Körperparser veraltet

// bodyParsor is deprecated, most of the functionality is included in express
// on epxress 4.16 and above just replace bodyParser with express
// e.g 
const express = require('express')
app.use(express.urlencoded({extended: true}));
Pishach

Bodyparser ist veraltet

const express = require('express');

app.use(express.urlencoded({ extended: true }));
Manga301

Ähnliche Antworten wie “Bodyparser ist veraltet”

Fragen ähnlich wie “Bodyparser ist veraltet”

Weitere verwandte Antworten zu “Bodyparser ist veraltet” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen