📌  相关文章
📜  mongoose 获取文档 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:31.190000             🧑  作者: Mango

代码示例2
//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();
    })
  },
}