From 4903c0aed4f6b48e01be6ce8541b8fd665a19b89 Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Fri, 11 Jul 2025 08:28:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=A8=E5=BA=94=E7=94=A8=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E9=A1=B5=E6=98=BE=E7=A4=BA=E6=A0=87=E7=AD=BE=E5=B9=B6?= =?UTF-8?q?=E7=AE=80=E5=8C=96=E7=89=88=E6=9C=AC=E6=8E=A7=E5=88=B6=E4=BA=A4?= =?UTF-8?q?=E4=BA=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加应用标签显示功能,从数据库查询并展示应用关联标签 移除版本控制页面中的SweetAlert弹窗,改为直接刷新页面 --- app.php | 15 ++++++++ developer/version_control.php | 70 ++++++++++++----------------------- 2 files changed, 38 insertions(+), 47 deletions(-) diff --git a/app.php b/app.php index 2ccab49..d117394 100644 --- a/app.php +++ b/app.php @@ -215,6 +215,21 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['rating'])) { ?>

评分: /5

开发者: 管理员

+ + prepare($sqlTags); + $stmtTags->bind_param("i", $appId); + $stmtTags->execute(); + $resultTags = $stmtTags->get_result(); + $tags = []; + while ($tag = $resultTags->fetch_assoc()) { + $tags[] = $tag['name']; + } + if (!empty($tags)): ?> +

标签:

+