Mongoose和MERN:无法呼叫和路由多个发现

时间:2018-05-14 15:27:33

标签: mongodb mongoose mern

我正在使用react-big-calendar而我想要一个findById(用于操作每个事件以进行编辑和删除)和一个findByUser(用于与数据库进行持久化)。

控制器

const db = require("../models");

module.exports = {
findAll: function(req, res) {
    db.Event
    .find()
    .then(dbModel => {

        res.json(dbModel)
    })
    .catch(err => res.status(422).json(err));
},
findByUser: function(req, res) {
    db.Event
    .find({user: req.params.user})
    .then(dbModel => res.json(dbModel))
    .catch(err => res.status(422).json(err));
},
findById: function(req, res) {
    db.Event
    .findById(req.params.id)
    .then(dbModel => res.json(dbModel))
    .catch(err => res.status(422).json(err));
},
create: function(req, res) {
    db.Event
    .create(req.body)
    .then(dbModel => res.json(dbModel))
    .catch(err => res.status(422).json(err));
},
update: function(req, res) {
    db.Event
    .findOneAndUpdate({ "_id": req.params.id }, 
        {
            "title": req.body.title,
            "start": req.body.start,
            "end": req.body.end,
            "description": req.body.description
        },
        { new: true }
    )
    .then(dbModel => res.json(dbModel))
    .catch(err => res.status(422).json(err))
},
remove: function(req, res) {
    db.Event
    .findById({ _id: req.params.id })
    .then(dbModel => dbModel.remove())
    .then(dbModel => res.json(dbModel))
    .catch(err => res.status(422).json(err));
}
}

路线

const router = require("express").Router();
const calendarController = require("../../controllers/calendarController");
const passport = require("passport");

router.route("/")
  .get(calendarController.findAll)
  .post(calendarController.create);

router.route("/:user")
  .get(calendarController.findByUser);

router.route("/:id")
  .get(calendarController.findById)
  .put(calendarController.update)
  .delete(calendarController.remove);


module.exports = router;

此时,findById返回一个空数组。如果我交换用户路由和id路由的顺序,它findById然后工作,但用户然后返回null。这里发生了什么事?我可以分别通过ID和用户ID来调用文档吗?

1 个答案:

答案 0 :(得分:1)

其实这里你的路线/:user/:id都无法区别......哪个找到第一个,先执行,另一个将覆盖

唯一的办法就是改变路线的名称

router.route("/user/:user")  // change the route name here
  .get(calendarController.findByUser);

router.route("/:id")
  .get(calendarController.findById)
  .put(calendarController.update)
  .delete(calendarController.remove);