set object is not JSON serializable 解决方式

Posted luminousjj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了set object is not JSON serializable 解决方式相关的知识,希望对你有一定的参考价值。

python return json的时候报错:

set object is not JSON serializable

解决方式,增加一个将set转为list的函数:

1 def set_default(obj):
2     if isinstance(obj, set):
3         return list(obj)
4     raise TypeError
5 
6 result = json.dumps(yourdata, default=set_default)

 

以上是关于set object is not JSON serializable 解决方式的主要内容,如果未能解决你的问题,请参考以下文章

使用 drf 时候 访问 主页报错 :'set' object is not reversible

TypeError: Object of type 'int32' is not JSON serializable ——已解决

TypeError: Object of type datetime is not JSON serializable问题解决

TypeError: Object of type datetime is not JSON serializable问题解决

Django 提示:Object of type ‘QuerySet‘ is not JSON serializable

python解决json.dump(字典)时报错Object of type ‘float32‘ is not JSON serializable