How to search document by oid in mongoengine

后端 未结 3 1726
伪装坚强ぢ
伪装坚强ぢ 2021-02-08 14:30

I need get documents from db by oid, like:

Docs.objects(_id=\'4f4381f4e779897a2c000009\')

But how to do it, if _id requires ObjectId object and

3条回答
  •  粉色の甜心
    2021-02-08 15:05

    How about just using the raw string:

    Docs.objects.get(id='4f4381f4e779897a2c000009')
    

    That is probably the easiest way ... right ?

提交回复
热议问题