我的代码:
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'状态的对象。
如何获取更新的数据对象。
感谢。