“Экспресс -Urlencoded” Ответ

явный путь запроса

// GET 'http://www.example.com/admin/new?a=b'
app.get('/admin', (req, res, next) => {
  req.originalUrl; // '/admin/new?a=b' (full path with query string)
  req.baseUrl; // '/admin'
  req.path; // '/new'
  req.baseUrl + req.path; // '/admin/new' (full path without query string)
});
garzj

Экспресс -Urlencoded

app.use(express.urlencoded({ extended: true }))
Mo Saeid

Urlencoded Json Express

var express = require('express')

var app = express()

app.use(express.json()) // for parsing application/json
app.use(express.urlencoded({ extended: true })) // for parsing application/x-www-form-urlencoded

app.post('/profile', function (req, res, next) {
  console.log(req.body)
  res.json(req.body)
})
Healthy Hare

Ответы похожие на “Экспресс -Urlencoded”

Вопросы похожие на “Экспресс -Urlencoded”

Больше похожих ответов на “Экспресс -Urlencoded” по JavaScript

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

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