英文:
Assign a field value to another field for all data in MongoDB
问题
在我对数据进行批量修改时,出现了这个问题。
User.find().then((r) => {
console.log(r)
r.forEach((elem) => {
User.update(
{
_id: elem._id
},
{
"$set": {
"openapi": elem.unionid
}
}
);
})
});
我使用了上述方法,但数据没有发生变化。附注:我已经检查了数据。
英文:
When I was making bulk modifications to my data, this problem occurred.
User.find().then((r) => {
console.log(r)
r.forEach((elem) => {
User.update(
{
_id: elem._id
},
{
"$set": {
"openapi": elem.unionid
}
}
);
})
});
I used the above method, but the data did not change. PS: I have checked the data.
答案1
得分: 1
一种简单的方法是使用管道更新:
User.updateMany(
{},
[{$set: {openapi: "$unionid"}}]
)
在示例 playground上查看它的工作方式。
英文:
A simple way is to use update with pipeline:
User.updateMany(
{},
[{$set: {openapi: "$unionid"}}]
)
See how it works on the playground example
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论