“Монгуз Получите документ” Ответ

Монгуз Получите документ

//Router file. After doing all your imports at beginning of file
const router = express.Router();
app.use('/pathforpostrequests', router);

router.get('/:name', controller.getPerson, (req, res, next) => {
  res.status(200).json(res.locals.person);
});

// Controller file. After doing all your imports at beginning of file. Person is an example mongo schema you will need to setup in a schema file.
const controller = {
  getPerson (req, res, next) {
    Person.findOne({ firstName: req.params.name }).exec()
    .then((result) => {
    res.locals.person = result;
    next();
    })
  },
}
felinehasher

FindByid Mongoose

// Find the adventure with the given `id`, or `null` if not found
await Adventure.findById(id).exec();

// using callback
Adventure.findById(id, function (err, adventure) {});

// select only the adventures name and length
await Adventure.findById(id, 'name length').exec();
Cheerful Cockroach

Ответы похожие на “Монгуз Получите документ”

Вопросы похожие на “Монгуз Получите документ”

Больше похожих ответов на “Монгуз Получите документ” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования