У меня есть этот код:
// get a specific question
app.get('/:id', (req, res) => {
Question.findById(req.params.id, function(err, response){
if (err) {
return res.status(404).send();
}
console.log(response);
res.send(response);
});
});
ответ:
{
_id: '5b9cee54a05caf7c847aee79',
title: 'How to make a burger?',
description:'I wanna know the steps that i need to follow...?',
answers: 0
}
Я хочу изменить имя _id
в ответе на id
, прежде чем отправить его клиенту, т.е. я хочу, чтобы ответ был:
{
id: '5b9cee54a05caf7c847aee79',
title: 'How to make a burger?',
description:'I wanna know the steps that i need to follow...?',
answers: 0
}
Как это сделать?