Anda harus menggunakan mesin template untuk menampilkan data di halaman html, ada banyak mesin template, Anda dapat memilih salah satu dari tautan
Berikut adalah contoh menggunakan pug :
1- instal pug
npm install pug --save
2- setel direktori tampilan:
app.set('views', path.join(__dirname, 'views'));
3- setel pug sebagai mesin tampilan default
app.set('view engine', 'pug');
4- buat history.pug
di dalam views
map
doctype html
html
head
body
table
thead
tr
th Name
th date
tbody
each idea in ideas
tr
td= idea.name
td= idea.date
5- meneruskan data dari express ke pug:
app.get('/history', (req, res) => {
let ideas = Idea.find({})
.sort({date:'desc'}).exec( (err, ideas) => {
res.render('history', ideas);
});
})