Angular2:Mongooose更新无法正常工作

时间:2017-11-27 16:05:57

标签: node.js mongodb mongoose

我一直在尝试使用mongoose更新mongo db。我没有收到任何错误,但更新没有发生。我尽力了。

  exports.update_a_keyValue = function(req, res) {
    console.log("templatecontroller: update_a_template - templateID:", 
    req.params._id, req.body);
    Template.findOneAndUpdate({_id: req.body._id}, req.body, {new: false}, 
    function(err, keyvalue) {
    if (err)
       res.send(err);
       res.json(keyvalue);
   });
 };

我在快递窗口收到这个。没有错误。在网络方面,我看到204和304错误。

templatecontroller: update_a_template - templateID: 
  5a1c22ab8af22e408c9bd0f4 
{ _
id: '5a1c22ab8af22e408c9bd0f4',
 key: 'testingthisagain',
__v: 0,
  values: [ { value: 'tesddfdfdf' }, { value: 'testingthisagain1' } ] }

0 个答案:

没有答案