如何使用python更新MongoDB文档?

时间:2018-02-10 16:29:29

标签: python mongodb pymongo discord.py

我尝试做的是使用python和discord.py更新MongoDB文档,但我提供的代码并不起作用。

elif string2 == "add":
    if string3 == "administrator":
        cur = coll.find({"_id" : string1.id})
        for doc in cur:
            if doc["perm"] == "administrator":
                await self.bot.say("Permission {} already found on db for user {}".format(string3, string1.name))
            else:
                db.users.update_one({"_id" : string1.id, "name" : string1.name, "perm" : "administrator"}, upsert=False)
                await self.bot.say("Permissions updated on db for user {}".format(string1.name))

以下是错误。

discord.ext.commands.errors.CommandInvokeError: Command raised an exception: TypeError: update_one() missing 1 required positional argument: 'update'

来自用户集合的文档:

_id: "191598787410526208"
name: "Stevyb0t"
perm: "administrator"

2 个答案:

答案 0 :(得分:1)

如果您的 id 是字符串,则您可能需要将其转换为ObjectId。另外,您可以打印更新结果,并检查成功:

from bson import ObjectId

result = db.users.update_one(
             {"_id": ObjectId(string1.id)},
             {"$set":
                 {"name": string1.name,
                  "perm": "administrator"}
             })

logger.debug('update result: {}'.format(result.raw_result))
if result.matched_count > 0:
    # Success code goes here
    pass
else:
    # Failure code goes here
    pass

答案 1 :(得分:0)

基本上是其他人评论的内容,但有一些格式使其更清晰易懂:

db.users.update_one(
    {"_id": string1.id},
    {"$set":
        {"name": string1.name,
        "perm": "administrator"
    }})

我还删除了upsert=False,因为无论如何这都是默认值,因此您无需指定它-尽管明确表示当然会有所帮助

编辑:阅读所有评论,已经提出了将接受的评论作为答案的建议,所以就在这里。我的回答和那句话没什么不同