“Паризер тела устарел” Ответ

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

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

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

// 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

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

app.use(express.json()); //Used to parse JSON bodies
Cute Cicada

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

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

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

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

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

Ответы похожие на “Паризер тела устарел”

Вопросы похожие на “Паризер тела устарел”

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

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

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