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/

10-12 14:00