MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Impossibile deserializzare PyMongo ObjectId da JSON

Penso che la tua forma di stringa assomigli effettivamente alla rappresentazione python...

s = '{"_id": {"$oid": "4edebd262ae5e93b41000000"}}'
u = json.loads(s, object_hook=json_util.object_hook)

print u  # Result:  {u'_id': ObjectId('4edebd262ae5e93b41000000')}

s = json.dumps(u, default=json_util.default)

print s  # Result:  {"_id": {"$oid": "4edebd262ae5e93b41000000"}}

La funzione bson.json_util.object_hook non sembra avere alcun tipo di gestione per la presenza di ObjectId() nella rappresentazione della stringa json effettiva.