소스 검색

decoder error

chenjunkai 6 년 전
부모
커밋
2e6c27a8e8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Controller/AppInfo.py

+ 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')
         ql = CommonService.qs_to_list(qs)
         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())