B
B
Banan442020-05-07 21:24:36
Express.js
Banan44, 2020-05-07 21:24:36

What does the extended property in the urlencoded method in body-parser do?

I programmed a small server:

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

const urlencodedParser = bodyParser.urlencoded({extended: true});

app.get('/message', (request, response) => {
  response.sendFile(__dirname + '/message.html')
})

app.post('/message', urlencodedParser, (request, response) => {
  if (!request.body) return response.sendStatus(400)
  console.log(request.body.name + " написал: " + request.body.message)
  response.redirect("/message")
})

app.listen(3000, () => {
  console.log('Сервер запущен на порте: 3000')
})

I don’t understand why the extended property is needed, I set true and false, everything works the same, maybe it adds additional properties when true? If so, which ones?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Yarkov, 2020-05-07
@Banan44

How about reading the doc first?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question