“Express.json gegen Bodyparser.json” Code-Antworten

Express.json gegen Bodyparser.json

Earlier versions of Express used to have a lot of middleware bundled with it. bodyParser was one of the middlewares that came it. When Express 4.0 was released they decided to remove the bundled middleware from Express and make them separate packages instead. The syntax then changed from app.use(express.json()) to app.use(bodyParser.json()) after installing the bodyParser module.

bodyParser was added back to Express in release 4.16.0, because people wanted it bundled with Express like before. That means you don't have to use bodyParser.json() anymore if you are on the latest release. You can use express.json() instead.

same for the app.use(express.urlencoded({ extended: true })) . you can use  bodyparse.urlencoded
Annoyed Alligator

Bodyparser ausdrücken

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

const app = express()

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))

// parse application/json
app.use(bodyParser.json())

app.use(function (req, res) {
  res.setHeader('Content-Type', 'text/plain')
  res.write('you posted:\n')
  res.end(JSON.stringify(req.body, null, 2))
})

Busy Butterfly

Ähnliche Antworten wie “Express.json gegen Bodyparser.json”

Fragen ähnlich wie “Express.json gegen Bodyparser.json”

Weitere verwandte Antworten zu “Express.json gegen Bodyparser.json” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen