Используйте функцию callback
, чтобы получить _id
после вставки document
.
Изменить вас id
на
_id
app.post('/upload', upload.single('file'), (req, res) => {
console.log(res._id);
console.log(res); //this line prints all the results
res.redirect('/');
});