如何在更新方法的回调函数中获取表达的PUT请求中的更新数据?

时间:2016-09-02 07:59:57

标签: node.js express

我的代码:

router.put("/",function(req,res){
    var collection = db.get("details");
    collection.update({id: parseInt(req.body.id)},
                      {id: parseInt(req.body.id), data: req.body.data},
                      function(err, details){
                          if(err) throw err;
                          res.json(details);
                      })
});

在上面的代码中, collectoon.update 的回调函数中的详细信息正在发送'ok'状态的对象。

如何获取更新的数据对象。

感谢。

0 个答案:

没有答案