gpt4 book ai didi

ajax - 如何使用 mongoose.js 合并更新文档?

转载 作者:可可西里 更新时间:2023-11-01 09:46:02 26 4
gpt4 key购买 nike

我有一个带有架构的模型:

schema = new Schema({
name: String,
sections: [{
name: String,
columns: [{
name: String
}]
}]
}];

//Lets call the model a Page

为简单起见,我检索了整个模型:

app.get('/page/:name', function(req, res){
Page.findOne( {name: req.params.name}, function(err, page){
//error handling
res.send page
});
});

请求 GET/page/myPage 我收到:

{
//_id, __v, etc..
name: 'myPage',
sections: [{
name: 'Section 1',
columns [{
name: 'My #1 Column'
}]
}]
}

我将第 0 列名称更改为我的第 1 列 FOOBAR!在客户端

{
//_id, __v, etc..
name: 'myPage',
sections: [{
name: 'Section 1',
columns [{
name: 'My #1 Column FOOBAR!'
}]
}]
}

另一个用户添加了一个名称为“我的#2 列!!!”的列

   {
//_id, __v, etc..
name: 'myPage',
sections: [{
name: 'Section 1',
columns [{
name: 'My #1 Column'
},
{
name: 'My #2 Column!!!'
}]
}]
}

两个用户都将整个不同步的 JSON 发送到服务器。我想合并它们。

这是我目前的保存方法:

app.post('/page/save', function(req, res) {
var newPage = req.body.page;

Page.findOne({
_id: newPage._id
}, function(err, page) {
if (err) {
return res.send(err);
}

// this portion is obviously problematic as it doesn't merge the objects
// it simply overwrites it with whatever page JSON you received at the time
// of the request.
page.sections = newPage.sections;

page.save(function(err) {
if (err) {
res.send(err);
} else {
res.send('success!');
}
});

});
});

我是否需要创建自己的更新队列,首先从服务器检索最新的文档,将文档合并在一起,然后保存它们。或者这是由 mongodb 处理的。

还有,有没有像更新这样的简单方法,将旧对象与新对象合并,然后保存?

谢谢。

最佳答案

我是这样做的:

.put('/:pr_id', (req, res, next) => {
let pr_id = req.params.pr_id;


PR.findById(pr_id, (err, doc) => {
if (err) {
return res.status(500).json({error: err});
}
if (!doc){
return res.status(404).json({error: 'Document not found'});
}

let updated = req.body.pr;
Object.assign(doc, updated);

doc.save((err) => {
if (err) {
return res.status(500).json({error: err});
}

res.json(doc);
});
});

Object.assign 基本上合并了两个对象(https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)

关于ajax - 如何使用 mongoose.js 合并更新文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13693080/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com