I need to get a value of the select option with body parser, how do it?
I’m using express, express-handlebars and body parser.
<form action="/cad-produto" method="POST">
<select name="categoriaPorduto">
<option selected >-- Selecione --</option>
<option value="porcoes" id="">Porções</option>
<option value="lanches" id="">Laches</option>
</select>
</form>
app.post('/cad-produto', (req, res)=> {
console.log(req.body.categoriaProduto)
})