使用节点js express和PUG(JADE)更新Mongodb

时间:2016-11-06 13:42:43

标签: javascript node.js mongodb express

我正在尝试添加一个编辑页面,我可以在mongodb中更改名称字段。但是我遇到路由问题,有人可以帮忙吗?这是路由:

router.put('/edit', function(req, res) {
user.findByIdAndUpdate({_id: req.params.id},
                 {
        name: req.body.name
     });   
  });

这是edit.pug

extends layout

block content
  .main.container.clearfix
    h1 Editing #{name}'s profile!
    form(method="POST", action="/edit")
     input(type="hidden", name="_method", value="PUT")
     p Name:
      input#name.form-control(type='text', value='#{name}')
     p
      input(type="submit")

谢谢

1 个答案:

答案 0 :(得分:0)

好的,我在这里看到的一些事情我想我可以帮忙澄清一下:

user.findByIdAndUpdate - 不为第一个参数提取对象,只是_id。 http://mongoosejs.com/docs/api.html#model_Model.findByIdAndUpdate

req.params - 已连接到此附加回调的路由,因此在您的路线中,您需要设置/:id来表示该值可以更改,但可以作为req.params.id使用。基本上你的路线应该像router.put('/edit/:id', function(req, res) {... http://expressjs.com/en/guide/routing.html#route-parameters

您可能还需要查看options方法的findByIdAndUpdate参数,因为默认情况下它会从其查找中返回原始文档,而不是在应用更新后保存到数据库中的文档。

所以你的节点代码应如下所示:

router.put('/edit/:id', function(req, res) { 
user.findByIdAndUpdate(
     req.params.id, // Which _id mongoose should search for
     { name: req.body.name }, //Updates to apply to the found document.
     { new: true }); // This tells mongoose to return the new updates back from the db   
  });