我正在做一个休息api来在mongo数据库和web应用程序之间交换数据。这些数据是json格式的。
我在更新文档方面遇到了麻烦:
cannot change _id of a document.
事实上,在我的JSON中,doc的_id存储为字符串并反序列化为字符串。而它在mongo中存储为 ObjectID 。这解释了为什么mongo会引发错误。
为避免这种情况,我手动将_id属性从字符串转换为 ObjectID 。但它似乎很难看,并且会因其他BSON类型而失败。
问:有没有一种干净的方法可以避免这种情况或做一个不错的JSON / BSON转换?
以下是我用来更新文档的代码。我正在使用带有express和mongodb的nodejs和本机驱动程序。
exports.updateById = function(req, res) {
var id = req.params.id;
var map = req.body;
map._id = new ObjectID.createFromHexString( map._id); // Manual conversion. How to avoid this???
console.log( 'Updating map: ' + id);
console.log( 'Map: ' + JSON.stringify( map));
db.collection('maps', function(err, collection) {
if(err) throw err;
collection.update(
{'_id': new BSON.ObjectID(id)}, map, {safe:true},
function(err, result) {
if (err) {
console.log('Updating map err: ' + JSON.stringify( err));
res.json( 500, {'message':'An error has occurred while updating the map', 'error': err});
} else {
console.log('Updating succeed');
res.send(map);
}
}
);
});
};
答案 0 :(得分:10)
由于您无法修改_id
字段,因此更好的方法是从map
对象中删除该字段,而不是将其转换为ObjectId。
所以这个:
delete map._id;
而不是:
map._id = new ObjectID.createFromHexString( map._id);
如果您想要使用res.send(map);
尝试返回更新的对象,则应使用findAndModify
代替update
,这样您就可以访问生成的文档,而不仅仅是发布了什么。