因此,我正在尝试更新mongodb数据库中的项目,但该项目无法正常工作,并且将error关键字设置为undefined。我可能做错了什么,但这是更新功能:
router.post("/file/:id/edit", (req, res) => {
var id = req.params.id;
File.findOneAndUpdate( {"_id": id} , req.body, (err) => {
if (err) return res.json({ success: false, error: err });
return res.json({ success: true });
});
});
调用它的函数:
export function updateFile(file) {
var objIdToUpdate = file["id"];
var myUpdate = axios.post("http://localhost:3001/api/file/:" + objIdToUpdate + "/edit", {
title: file.title,
author: file.author,
dateCreated: file.dateC,
dateModified: file.dateModified,
size: file.size,
type: file.type,
tags: file.tags
});
return myUpdate;
}
我的架构:
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const FileSchema = new Schema(
{
title: String,
author: String,
dateCreated: String,
dateModified: String,
size: String,
type: String,
tags: []
},
{ timestamps: true }
);
module.exports = mongoose.model("File", FileSchema, "files");
当我尝试打印“ err”关键字时,它只是未定义。为什么这对修改数据库中的值不起作用,出了什么问题?
最佳答案
在findOneAndUpdate的回调函数中,err中始终会有一个值,如果您使用then并捕获如下承诺,则更好:
File.findOneAndUpdate({ "_id": req.params.id}, { req.body },{returnNewDocument: true})
.then((resp) => { res.send(resp) })
.catch((err) => { res.send(err) });
关于javascript - JavaScript-Express-MongoDb-Mongoose findOneAndUpdate返回未定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54756592/