“Bodyparser mengekspresikan usang” Kode Jawaban

Ekspres Bodyparser sudah usang

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

Parser tubuh sudah usang

const express = require('express');

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

mengekspresikan body-parser sudah usang

If you are using the latest express module use this:

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

bodyparser body-parser usang

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

Ekspres Bodyparser sudah usang

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

Bodyparser mengekspresikan usang

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

Jawaban yang mirip dengan “Bodyparser mengekspresikan usang”

Pertanyaan yang mirip dengan “Bodyparser mengekspresikan usang”

Lebih banyak jawaban terkait untuk “Bodyparser mengekspresikan usang” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya