Posts by Carlos • 11 points
2 posts
-
1
votes2
answers626
viewsA: Error while trying to display database data using Handlebars
Answer found. router.get('/categorias', (req,res) => { Categoria.find().sort({date:'desc'}).lean().then((categorias) => { res.render('admin/categorias.handlebars',{categorias:categorias});…
-
-1
votes2
answers626
viewsQ: Error while trying to display database data using Handlebars
Handlebars is returning this error to me every time I access the html page, it receives the values from the database but does not display. I’m using Mongo as a bank. Can you tell me if it’s some…