From 1a16319235a6a0d4cc1e94eb2c9a7ad501191985 Mon Sep 17 00:00:00 2001 From: rogersun Date: Tue, 21 Jul 2026 10:11:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0html=E6=8A=A5=E5=91=8A?= =?UTF-8?q?=E7=9A=84=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ai/views.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ai/views.py b/ai/views.py index f3f4d59..43df6ae 100644 --- a/ai/views.py +++ b/ai/views.py @@ -1,4 +1,5 @@ from anyio import sleep +from urllib.parse import unquote from django.http import JsonResponse from django.utils.timezone import make_aware, utc from django.db.models import Q @@ -146,6 +147,7 @@ def report(request): 'ai_count_total': ai_count_total, 'real_count_detail': real_count_detail, 'real_count_total': real_count_total, + 'report': unquote(json.loads(last_ai_data.result).get('report', '')) } } print(result_dict)