TypeError Object of type ‘bytes‘ is not JSON serializable

    技术2022-07-11  82

    报错内容:

    TypeError: Object of type 'bytes' is not JSON serializable ERROR basehttp 157 "GET /browse_histories/ HTTP/1.1" 500 116158

    源代码:

    skus.append({ "id": int(sku_id), "name": sku.name, 'default_image_url': sku.default_image_url, 'price': sku.price }) return JsonResponse({ 'code': 0, 'errmsg': 'OK', 'skus': skus })

    int转化成JSON支持的数据类型

    bytes不支持

    Processed: 0.012, SQL: 9