“Телопапер Экспресс устарел” Ответ

Экспресс тела нерешился

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

Паризер тела устарел

const express = require('express');

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

Экспресс-карнаст устарел

If you are using the latest express module use this:

app.use(express.json())
app.use(express.urlencoded({extended: true}))
NotDamian

Управление тела-тела

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

Экспресс тела нерешился

body-parser has been deprecated from express v4.* 
Use body-parser package instead.
npm i body-parser

import bodyParser from "body-parser";//for typscript code only, use require for js
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
Live to Code

Телопапер Экспресс устарел

const app = express()
app.use(express.json({ limit: "2mb" }));
app.use(express.urlencoded({ extended: true }));
Cherry berry

Ответы похожие на “Телопапер Экспресс устарел”

Вопросы похожие на “Телопапер Экспресс устарел”

Больше похожих ответов на “Телопапер Экспресс устарел” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования