Python取mongodb数据转化为json时报错:TypeError: Object of type 'ObjectId' is not JSON serializable的处理方法
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
Python处理mongodb数据时,取出的数据中有 '_id': ObjectId('5c2713d97d75734070fe9e39')。因为_id是ObjectId类型,然后返回时用json.dumps(数据)时会有报错:TypeError: Object of type 'ObjectId' is not JSON serializable。正确处理方法是自己写一个encoder去继承jsonencoder ,这样就能够进行编码了。
以此ObjectId为例:
class JSONEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o,ObjectId):
return str(o)
return json.JSONEncoder.default(self,o)
使用示例:
def Test(request):
if request.method == "GET":
host = request.GET.get("hostname")
resp_value = db.mongoQuery(query={"hostname":"es-proxy"},type="one")
a = JSONEncoder().encode(resp_value) //转化
return HttpResponse(a)
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)