gpt4 book ai didi

python - 如何更新 Pymongo 中集合中的多个内容?

转载 作者:太空宇宙 更新时间:2023-11-03 14:25:10 25 4
gpt4 key购买 nike

collection.find_one_and_update(
{'username': hero.name}, {'$set': {'exp': hero.exp}})
collection.find_one_and_update(
{'username': hero.name}, {'$set': {'level': hero.level}})

我有两个这样的更新。有什么办法可以将它们合二为一吗?

最佳答案

您需要像这样合并更新的值对象:

collection.find_one_and_update({
'username': hero.name
}, {
'$set': {
'exp': hero.exp,
'level': hero.level
}})

关于python - 如何更新 Pymongo 中集合中的多个内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47688220/

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