我正在使用此功能保存到mongodb:
create(req, res, next) {
let data = req.body;
if(data) {
let newIssue = this.lib.db.model('Issues')('data');
console.log(newIssue);
newIssue.save((err, emp) => {
if(err) return next(this.RESTError('InternalServerError', err));
this.writeHAL(res, emp);
});
} else {
next(this.RESTError('InvalidArgumentError', 'No data received'));
}
}
这是我的架构:
module.exports = {
"id": "Issues",
"properties": {
"issue_title": {
"type": "string",
"description": "The title of the issue"
},
"issue_number": {
"type": "string",
"description": "The issue number"
},
"issue_url": {
"type": "string",
"description": "URL of the issue"
}
}
}
我对save()
的理解是,如果文档已经存在于mongodb中,它会更新,但如果它尚不存在则会创建一个新文档。但是,每次我发布同一文档时,都会插入一个新文档,而不是更新现有文档。我怀疑这是因为在保存时,包含唯一ID的_id
密钥被添加到我的模式中,使文档唯一。这是正确的,如果是这样,我该怎么解决这个问题?
附加信息
我现在添加了一个PUT。我的想法是我会用{upsert:true}
做更新。我已经部分工作了,我可以把它放到issue/{id} where
{id} is the mongodb
_id`并更新现有文件。
这是我的PUT:
update(req, res, next) {
let data = req.body;
let id = req.params.id;
if(id) {
this.lib.db.model('Issues')
.findOne({_id: id})
.exec((err, updateIssue) => {
if(err) return next(this.RESTError('InternalServerError', err));
updateIssue = Object.assign(updateIssue, data);
updateIssue.update((err, issue) => {
if(err) return next(this.RESTError('InternalServerError', err));
this.writeHAL(res, issue);
});
});
}
}
这是路由:
controller.addAction({
'path': '/issues/{id}',
'method': 'PUT',
'summary': "UPDATES the issues's information",
'params': [swagger.pathParam('id', 'The id of the issue', 'string'),
swagger.bodyParam('issue', 'the new information to update', 'string')],
'responseClass': 'Issues',
'nickname': 'updateIssue'
}, controller.update);
我不认为我可以使用它来upsert,因为我没有_id
开始,所以可以; t创建路径。我的另一种选择是使用github_id
。但是,每当我试图改变我的路由路径到/issues/{github_id}
或用.findOne({github_id: id})
更新我的功能时,我都会收到错误。我需要能够使用/issues/{github_id}
并检查github_id
是否已经存在。如果是,请更新文档,如果没有,请创建一个新文档。
更多信息
我已将更新功能更改为:
update(req, res, next) {
let data = req.body;
let id = req.params.id;
if(id) {
this.lib.db.model('Issues')
.findOne({_id: id})
.exec((err, updateIssue) => {
if(err) return next(this.RESTError('InternalServerError', err));
updateIssue = Object.assign(updateIssue, data);
updateIssue.update({_id: id}, data, (err, issue) => {
if(err) return next(this.RESTError('InternalServerError', err));
this.writeHAL(res, issue);
});
});
}
}
如果我添加以下console.log
后行updateIssue.update({_id: id}, data, (err, issue) => {
:
console.log('id: ', id);
console.log('data: ', data);
console.log('err: ', err);
console.log('issue: ', issue);
我得到这个输出:
id: 5b80307403eea4f14b06fe8c
data: { _id: '5b80307403eea4f14b06fe8c',
github_id: '347593262',
issue_title: 'test issue XY',
issue_number: '2',
issue_url: 'https://api.github.com/repos/PCTestOrg/test1/issues/2a',
__v: 0 }
err: null
issue: { n: 1, nModified: 0, ok: 1 }
我希望issue_title
能从test issue X
更新到test issue XY
,但更新不会发生。我在这做错了什么?
如果您想创建或更新使用upsert更新
Model.update({_id: id}, obj, {upsert: true}, function (err) {...});
我无法得到upsert工作所以在阅读this帖子后最终得到了以下内容:
update(req, res, next) {
let data = req.body;
let id = req.params.id;
if(id) {
this.lib.db.model('Issues')
.findOne({_id: id})
.exec((err, updateIssue) => {
if(err) return next(this.RESTError('InternalServerError', err));
updateIssue = Object.assign(updateIssue, data);
updateIssue.save((err, issue) => {
if(err) return next(this.RESTError('InternalServerError', err));
this.writeHAL(res, issue);
});
});
}
else if(data) {
let newIssue = this.lib.db.model('Issues')(data);
console.log(newIssue);
newIssue.save((err, issue) => {
if(err) return next(this.RESTError('InternalServerError', err));
this.writeHAL(res, issue);
});
} else {
next(this.RESTError('InvalidArgumentError', 'No data received'));
}
}
如果有人能告诉我的话,我肯定有更好的方法可以做到这一点。