From 3383e411ec7e271bfee5adea8c267c78570e5e97 Mon Sep 17 00:00:00 2001 From: JiangChao <614792301@qq.com> Date: Wed, 3 Jul 2024 15:19:42 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20bug=20564=20=E6=B7=BB=E5=8A=A0=E6=B3=A8?= =?UTF-8?q?=E9=87=8A=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/admin_service.py b/app/admin_service.py index 9cd093a..2a295af 100644 --- a/app/admin_service.py +++ b/app/admin_service.py @@ -89,7 +89,7 @@ def article(): flash(f'Article ID {delete_id} deleted successfully.') # 刷新页首提示语 _update_context() except ValueError: - flash('Invalid article ID for deletion.') + flash('Invalid article ID for deletion.') # 刷新页首提示语 content = data.get("content", "") source = data.get("source", "") @@ -99,9 +99,9 @@ def article(): if level not in ['1', '2', '3', '4']: return "Level must be between 1 and 4." add_article(content, source, level, question) - _update_context() title = content.split('\n')[0] flash(f'Article added. Title: {title}') + _update_context() # 这行应在flash之后 否则会发生新建的文章即点即删 return render_template("admin_manage_article.html", **context)