chenjunkai 6 жил өмнө
parent
commit
2e6c27a8e8

+ 1 - 1
Controller/AppInfo.py

@@ -217,6 +217,6 @@ class AppVersionView(View):
         qs = App_Info.objects.filter(appBundleId=appBundleId,app_type=app_type).values('content')
         qs = App_Info.objects.filter(appBundleId=appBundleId,app_type=app_type).values('content')
         ql = CommonService.qs_to_list(qs)
         ql = CommonService.qs_to_list(qs)
         for q in ql:
         for q in ql:
-            data.append(json.loads(q['content']))
+            data.append(json.loads(q['content'], strict=False))
         return render_to_response('appVerList.html', locals())
         return render_to_response('appVerList.html', locals())