Анализатор тела отображается как неопределенный при отправке данных через URL.
Это URL: http://localhost:3011/mybooking?email=example@example.com
Вот мой код:
var bodyParser = require('body-parser');
const express = require('express');
const app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.get('*',(req,res)=>
{
console.log(req.body)
console.log(req.body.email)
console.log(req.params.email)
})
const port = 3011
app.listen(port,(req,res)=>
{
console.log("App.js listening on the port "+port)
})
Пожалуйста, помогите мне как можно скорее.
Мой вывод
App.js listening on the port 3011
{}
undefined
undefined