“Bodyparser sudah 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

Bodyparser sudah usang.

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

Parser tubuh sudah usang

const express = require('express');

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

bodyparser body-parser usang

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

Parser tubuh sudah usang

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

const express = require('express');

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

Jawaban yang mirip dengan “Bodyparser sudah usang”

Pertanyaan yang mirip dengan “Bodyparser sudah usang”

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

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya