Browse Source

fix:redis add bug

chenjunkai 6 năm trước cách đây
mục cha
commit
d3881635e7
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      Service/ModelService.py

+ 2 - 1
Service/ModelService.py

@@ -99,10 +99,11 @@ class ModelService:
         try:
             querysetlist = []
             for i in data_list:
-                data = json.loads(i)
+                data = json.loads(i.decode('utf-8'))
                 querysetlist.append(Access_Log(**data))
             Access_Log.objects.bulk_create(querysetlist)
         except Exception as e:
+            print('ggga')
             print(repr(e))
             return False
         else: