# 将其序列化
from django.core import serializers customers = serializers.serialize("json", customers)
TypeError: Object of type 'type' is not JSON serializable解决方法
2022-08-30 16:39:00
# 将其序列化
from django.core import serializers customers = serializers.serialize("json", customers)
TypeError: Object of type 'type' is not JSON serializable解决方法