Files
struts2-demo/web/WEB-INF/views/upload/success.jsp

93 lines
3.2 KiB
Plaintext

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>上传元数据结果 - Struts2 学习实验台</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
font-family: "Aptos", "Segoe UI", "Microsoft YaHei", sans-serif;
background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 55%, #dff4ff 100%);
}
.card {
width: min(760px, 100%);
background: rgba(255,255,255,0.95);
border-radius: 28px;
padding: 28px;
box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.eyebrow {
font-size: 12px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #0284c7;
font-weight: 800;
}
h1 { margin: 10px 0 12px; }
p { margin: 0; color: #53677b; line-height: 1.85; }
.stats {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
margin-top: 18px;
}
.stat {
padding: 16px;
border-radius: 18px;
background: #f5fbff;
border: 1px solid #d8ebf8;
}
.stat span { display: block; font-size: 12px; color: #62809d; margin-bottom: 6px; }
.stat strong { font-size: 20px; }
.links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.link-btn {
display: inline-flex;
padding: 10px 14px;
border-radius: 999px;
background: #edf7ff;
color: #0284c7;
text-decoration: none;
font-weight: 700;
}
@media (max-width: 720px) {
.stats { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="card">
<div class="eyebrow">上传结果</div>
<h1>上传元数据已经被 Action 成功接收</h1>
<p>这个实验只记录元数据,不真正保存文件。重点是理解 Struts2 对 multipart 表单字段的接收方式。</p>
<div class="stats">
<div class="stat">
<span>文件数量</span>
<strong><s:property value="fileCount" default="0"/></strong>
</div>
<div class="stat">
<span>主文件名</span>
<strong><s:property value="uploadFileName" default="未提供"/></strong>
</div>
<div class="stat">
<span>内容类型</span>
<strong><s:property value="uploadContentType" default="未知"/></strong>
</div>
</div>
<div class="links">
<a class="link-btn" href="../uploadPage.action">再做一次上传实验</a>
<a class="link-btn" href="../dashboard.action">返回仪表盘</a>
</div>
</div>
</body>
</html>