Compare commits
36 Commits
@ -1,86 +1,199 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>回答问题</title>
|
<title>回答问题</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: 'Arial', sans-serif;
|
font-family: 'Arial', sans-serif;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: linear-gradient(135deg, #6e45e2, #88d3ce);
|
background: linear-gradient(135deg, #6e45e2, #88d3ce);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
.container {
|
.container {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: rgba(255, 255, 255, 0.1);
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
#question {
|
#question {
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
button {
|
button {
|
||||||
padding: 12px 30px;
|
padding: 12px 30px;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
background-color: #ff5722;
|
background-color: #ff5722;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||||||
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
}
|
}
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: #ff3d00;
|
background-color: #ff3d00;
|
||||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div id="question">你需要回答问题 结果是:</div>
|
<div id="question">请重复问题,选择正确或错误:</div>
|
||||||
<button id="correctButton">正确</button>
|
<button id="repeatCorrectButton">准确重复</button>
|
||||||
<button id="wrongButton">错误</button>
|
<button id="repeatWrongButton">未准确重复</button>
|
||||||
<button class="back-button" onclick="window.location.href='select.html'">返回点名页面</button>
|
|
||||||
<div id="result"></div>
|
<div id="questionResult"></div> <!-- 显示重复问题的结果 -->
|
||||||
</div>
|
|
||||||
|
<div id="answerContainer" style="display:none;">
|
||||||
<script>
|
<p>现在回答问题:</p>
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
<button id="correctButton">回答正确</button>
|
||||||
const name = urlParams.get('name');
|
<button id="partiallyCorrectButton">部分正确</button>
|
||||||
const correctButton = document.querySelector('#correctButton');
|
<button id="wrongButton">回答错误</button>
|
||||||
const wrongButton = document.querySelector('#wrongButton');
|
</div>
|
||||||
const resultDisplay = document.querySelector('#result');
|
|
||||||
|
<button class="back-button" onclick="window.location.href='select.html'">返回点名页面</button>
|
||||||
// 初始化积分
|
<div id="result"></div>
|
||||||
let userPoints = parseInt(localStorage.getItem(name));
|
<div id="studentInfo"></div> <!-- 显示学生信息 -->
|
||||||
|
</div>
|
||||||
// 正确答案处理
|
|
||||||
correctButton.addEventListener('click', () => {
|
<script>
|
||||||
userPoints += 10; // 正确回答加 10 分
|
async function updateScore(student_id, points) {
|
||||||
localStorage.setItem(name, userPoints); // 保存更新后的积分
|
try {
|
||||||
resultDisplay.textContent = `正确!${name} 的当前积分: ${userPoints}`;
|
const response = await fetch('/api/update-score', {
|
||||||
|
method: 'POST',
|
||||||
});
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
// 错误答案处理
|
},
|
||||||
wrongButton.addEventListener('click', () => {
|
body: JSON.stringify({ student_id, points }),
|
||||||
userPoints -= 5;
|
});
|
||||||
localStorage.setItem(name, userPoints); // 保存更新后的积分
|
|
||||||
resultDisplay.textContent = `错误!${name} 的当前积分: ${userPoints}`;
|
if (!response.ok) {
|
||||||
|
throw new Error('网络响应不正常');
|
||||||
});
|
}
|
||||||
|
|
||||||
</script>
|
const data = await response.text(); // 使用 text() 解析纯数字响应
|
||||||
|
console.log('更新后的分数:', data); // data 是字符串形式的分数
|
||||||
</body>
|
return data; // 返回更新后的分数字符串
|
||||||
</html>
|
} catch (error) {
|
||||||
|
console.error('分数更新失败:', error);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
|
const student_name = urlParams.get('student_name');
|
||||||
|
const student_id = urlParams.get('student_id');
|
||||||
|
|
||||||
|
const repeatCorrectButton = document.querySelector('#repeatCorrectButton');
|
||||||
|
const repeatWrongButton = document.querySelector('#repeatWrongButton');
|
||||||
|
const questionResultDisplay = document.querySelector('#questionResult');
|
||||||
|
const correctButton = document.querySelector('#correctButton');
|
||||||
|
const partiallyCorrectButton = document.querySelector('#partiallyCorrectButton');
|
||||||
|
const wrongButton = document.querySelector('#wrongButton');
|
||||||
|
const resultDisplay = document.querySelector('#result');
|
||||||
|
const answerContainer = document.querySelector('#answerContainer');
|
||||||
|
const studentInfoDisplay = document.querySelector('#studentInfo');
|
||||||
|
|
||||||
|
// 显示学生姓名和学号
|
||||||
|
studentInfoDisplay.textContent = `学生: ${student_name} 学号: ${student_id}`;
|
||||||
|
|
||||||
|
// 正确重复问题处理 +0.5
|
||||||
|
repeatCorrectButton.addEventListener('click', () => {
|
||||||
|
updateScore(student_id, 0.5)
|
||||||
|
.then(newscore => {
|
||||||
|
if (newscore !== null) {
|
||||||
|
questionResultDisplay.textContent = `重复正确!${student_id} 的当前积分: ${newscore}`; // 直接使用字符串
|
||||||
|
answerContainer.style.display = 'block'; // 显示回答问题部分
|
||||||
|
} else {
|
||||||
|
console.error('更新分数失败');
|
||||||
|
questionResultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('请求失败:', error);
|
||||||
|
questionResultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// 未准确重复问题处理 -1
|
||||||
|
repeatWrongButton.addEventListener('click', () => {
|
||||||
|
updateScore(student_id, -1)
|
||||||
|
.then(newscore => {
|
||||||
|
if (newscore !== null) {
|
||||||
|
questionResultDisplay.textContent = `重复错误!${student_id} 的当前积分: ${newscore}`; // 直接使用字符串
|
||||||
|
answerContainer.style.display = 'block'; // 显示回答问题部分
|
||||||
|
} else {
|
||||||
|
console.error('更新分数失败');
|
||||||
|
questionResultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('请求失败:', error);
|
||||||
|
questionResultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// 回答问题的处理
|
||||||
|
correctButton.addEventListener('click', () => {
|
||||||
|
updateScore(student_id, 3)
|
||||||
|
.then(newscore => {
|
||||||
|
if (newscore !== null) {
|
||||||
|
resultDisplay.textContent = `回答完全正确!${student_id} 的当前积分: ${newscore}`; // 直接使用字符串
|
||||||
|
} else {
|
||||||
|
console.error('更新分数失败');
|
||||||
|
resultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('请求失败:', error);
|
||||||
|
resultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
partiallyCorrectButton.addEventListener('click', () => {
|
||||||
|
updateScore(student_id, 1.5)
|
||||||
|
.then(newscore => {
|
||||||
|
if (newscore !== null) {
|
||||||
|
resultDisplay.textContent = `回答部分正确!${student_id} 的当前积分: ${newscore}`; // 直接使用字符串
|
||||||
|
} else {
|
||||||
|
console.error('更新分数失败');
|
||||||
|
resultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('请求失败:', error);
|
||||||
|
resultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
wrongButton.addEventListener('click', () => {
|
||||||
|
updateScore(student_id, 0.5)
|
||||||
|
.then(newscore => {
|
||||||
|
if (newscore !== null) {
|
||||||
|
resultDisplay.textContent = `回答基本正确!${student_id} 的当前积分: ${newscore}`; // 直接使用字符串
|
||||||
|
} else {
|
||||||
|
console.error('更新分数失败');
|
||||||
|
resultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('请求失败:', error);
|
||||||
|
resultDisplay.textContent = `更新分数失败,请重试。`;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
@ -0,0 +1,65 @@
|
|||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
const xlsx = require('xlsx');
|
||||||
|
const pool = require('../db');
|
||||||
|
|
||||||
|
const classManager = {
|
||||||
|
addClass: async (req, res) => {
|
||||||
|
// 创建students表的SQL语句
|
||||||
|
const createTableQuery = `
|
||||||
|
CREATE TABLE IF NOT EXISTS students (
|
||||||
|
student_id INT AUTO_INCREMENT PRIMARY KEY,
|
||||||
|
student_name VARCHAR(255) NOT NULL,
|
||||||
|
score DECIMAL(5, 2),
|
||||||
|
call_count INT DEFAULT 0
|
||||||
|
);
|
||||||
|
`;
|
||||||
|
try {
|
||||||
|
// 先创建表
|
||||||
|
await pool.query(createTableQuery);
|
||||||
|
|
||||||
|
const filePath = req.file.path;
|
||||||
|
|
||||||
|
// 读取并解析Excel文件
|
||||||
|
const workbook = xlsx.readFile(filePath);
|
||||||
|
const sheetName = workbook.SheetNames[0];
|
||||||
|
const worksheet = workbook.Sheets[sheetName];
|
||||||
|
|
||||||
|
const students = xlsx.utils.sheet_to_json(worksheet);
|
||||||
|
|
||||||
|
// 定义所需的字段
|
||||||
|
const requiredFields = ['student_id','student_name'];
|
||||||
|
let hasError = false;
|
||||||
|
|
||||||
|
students.forEach(student => {
|
||||||
|
// 数据验证
|
||||||
|
const missingFields = requiredFields.filter(field =>!(field in student));
|
||||||
|
if (missingFields.length > 0) {
|
||||||
|
console.error(`Student data is missing fields: ${missingFields.join(', ')}`);
|
||||||
|
hasError = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 将学生数据插入数据库
|
||||||
|
const query = 'INSERT INTO students (student_id, student_name, score, call_count) VALUES (?,?, 0, 0)';
|
||||||
|
pool.query(query, [student.student_id, student.student_name], (error) => {
|
||||||
|
if (error) {
|
||||||
|
console.error(`Error inserting student: ${student.name}`, error);
|
||||||
|
hasError = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
if (hasError) {
|
||||||
|
res.status(500).json({ message: 'Error adding class. Some students were not added successfully.' });
|
||||||
|
} else {
|
||||||
|
res.status(200).json({ message: 'Class added successfully!' });
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Error creating students table:', err);
|
||||||
|
res.status(500).json({ message: 'Error creating table during class addition.' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = classManager;
|
@ -0,0 +1,24 @@
|
|||||||
|
const mysql = require('mysql2/promise');
|
||||||
|
|
||||||
|
// 创建连接池
|
||||||
|
const pool = mysql.createPool({
|
||||||
|
host: 'localhost', // 数据库地址
|
||||||
|
user: 'root', // 数据库用户名
|
||||||
|
password: '123456', // 数据库密码
|
||||||
|
database: 'class_k' ,// 使用的数据库
|
||||||
|
waitForConnections: true,
|
||||||
|
connectionLimit: 10,
|
||||||
|
queueLimit: 0
|
||||||
|
});
|
||||||
|
|
||||||
|
// 测试数据库连接
|
||||||
|
pool.getConnection((err, connection) => {
|
||||||
|
if (err) {
|
||||||
|
console.error('Error connecting to the database:', err);
|
||||||
|
} else {
|
||||||
|
console.log('Database connected successfully!');
|
||||||
|
connection.release(); // 释放连接
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = pool;
|
@ -0,0 +1,22 @@
|
|||||||
|
const pool = require('../db');
|
||||||
|
|
||||||
|
async function deleteTable(req, res) {
|
||||||
|
const { tableName } = req.body; // 从请求体中获取表名
|
||||||
|
let connection;
|
||||||
|
|
||||||
|
try {
|
||||||
|
connection = await pool.getConnection();
|
||||||
|
await connection.query(`DROP TABLE IF EXISTS ??`, [tableName]); // 删除表
|
||||||
|
connection.release();
|
||||||
|
res.json({ message: `表 ${tableName} 已被成功删除` });
|
||||||
|
} catch (error) {
|
||||||
|
console.error('删除表失败:', error);
|
||||||
|
res.status(500).json({ error: '删除表失败' });
|
||||||
|
} finally {
|
||||||
|
if (connection) {
|
||||||
|
connection.release();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { deleteTable };
|
@ -1,135 +1,200 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>抽奖页面</title>
|
<title>抽奖页面</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: 'Arial', sans-serif;
|
font-family: 'Arial', sans-serif;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: linear-gradient(135deg, #6e45e2, #88d3ce);
|
background: linear-gradient(135deg, #6e45e2, #88d3ce);
|
||||||
color: white;
|
color: white;
|
||||||
transition: background-color 0.5s ease;
|
transition: background-color 0.5s ease;
|
||||||
}
|
}
|
||||||
.container {
|
.container {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: rgba(255, 255, 255, 0.1);
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transition: opacity 0.5s ease;
|
transition: opacity 0.5s ease;
|
||||||
}
|
}
|
||||||
#pointsDisplay {
|
#pointsDisplay {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
button {
|
button {
|
||||||
padding: 12px 30px;
|
padding: 12px 30px;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
background-color: #ff5722;
|
background-color: #ff5722;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||||||
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
}
|
}
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: #ff3d00;
|
background-color: #ff3d00;
|
||||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
#loading {
|
#loading {
|
||||||
display: none;
|
display: none;
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div id="pointsDisplay">当前积分: </div>
|
<div id="pointsDisplay">当前积分: </div>
|
||||||
<button id="startLotteryButton">开始抽奖</button>
|
<button id="startLotteryButton">开始抽奖</button>
|
||||||
<button class="back-button" id="backButton">返回前一页面</button>
|
<button class="back-button" id="backButton">返回前一页面</button>
|
||||||
<div id="result"></div>
|
<div id="result"></div>
|
||||||
<div id="loading">正在加载,请稍候...</div>
|
<div id="loading">正在加载,请稍候...</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
let name = urlParams.get('name');
|
let student_name = urlParams.get('student_name');
|
||||||
|
let student_id = urlParams.get('student_id');
|
||||||
// 如果 URL 中没有 name 参数,尝试从 localStorage 获取
|
|
||||||
if (!name) {
|
const pointsDisplay = document.querySelector('#pointsDisplay');
|
||||||
name = localStorage.getItem('currentUserName');
|
const startLotteryButton = document.querySelector('#startLotteryButton');
|
||||||
}
|
const resultDisplay = document.querySelector('#result');
|
||||||
|
const backButton = document.getElementById('backButton');
|
||||||
const pointsDisplay = document.querySelector('#pointsDisplay');
|
const loadingIndicator = document.getElementById('loading');
|
||||||
const startLotteryButton = document.querySelector('#startLotteryButton');
|
|
||||||
const resultDisplay = document.querySelector('#result');
|
// 睡眠函数,让页面跳转更自然
|
||||||
const backButton = document.getElementById('backButton');
|
function sleep(d) {
|
||||||
const loadingIndicator = document.getElementById('loading');
|
return new Promise(resolve => setTimeout(resolve, d));
|
||||||
|
}
|
||||||
// 睡眠函数,让页面跳转更自然
|
|
||||||
function sleep(d) {
|
// 全局变量,用于存储用户积分
|
||||||
return new Promise(resolve => setTimeout(resolve, d));
|
let userPoints = null;
|
||||||
}
|
|
||||||
|
// 获取该用户的分数
|
||||||
// 获取该用户的积分
|
const fetchStudentScore = async (student_id) => {
|
||||||
let userPoints = parseInt(localStorage.getItem(name)) || 0;
|
try {
|
||||||
pointsDisplay.textContent = `${name} 的当前积分: ${userPoints}`;
|
const response = await fetch('http://localhost:3000/api/get-score', {
|
||||||
|
method: 'POST', // 使用 POST 方法
|
||||||
// 设置返回按钮的 URL
|
headers: {
|
||||||
backButton.onclick = () => {
|
'Content-Type': 'application/json', // 设置请求体的内容类型
|
||||||
loadingIndicator.style.display = 'block'; // 显示加载提示
|
},
|
||||||
window.location.href = `choice.html?name=${encodeURIComponent(name)}`;
|
body: JSON.stringify({ student_id }), // 将 student_id 放入请求体
|
||||||
};
|
});
|
||||||
|
|
||||||
// 抽奖逻辑
|
if (!response.ok) {
|
||||||
startLotteryButton.addEventListener('click', async () => {
|
alert('分数获取失败');
|
||||||
if (userPoints >= 20) {
|
return null; // 返回 null 表示获取失败
|
||||||
userPoints -= 20; // 每次抽奖消耗 20 分
|
}
|
||||||
localStorage.setItem(name, userPoints); // 保存更新后的积分
|
|
||||||
pointsDisplay.textContent = `${name} 的当前积分: ${userPoints}`;
|
// 直接返回响应体中的数字
|
||||||
|
const data = await response.json(); // 直接解析为 JSON
|
||||||
// 随机选择奖品
|
const score = data.score;
|
||||||
const prizes = ["跳过权", "再来一次", "什么也没有发生", "加30积分且跳过"];
|
return score; // 返回数字
|
||||||
const randomPrize = prizes[Math.floor(Math.random() * prizes.length)];
|
} catch (error) {
|
||||||
resultDisplay.textContent = `你赢得了: ${randomPrize}`;
|
alert('网络请求失败');
|
||||||
|
return null; // 返回 null 表示获取失败
|
||||||
// 等待 2 秒以展示结果
|
}
|
||||||
await sleep(2000);
|
};
|
||||||
loadingIndicator.style.display = 'block'; // 显示加载提示
|
|
||||||
|
|
||||||
if (randomPrize === '跳过权') {
|
// 更新用户分数
|
||||||
await sleep(1000);
|
async function updateScore(student_id, points) {
|
||||||
window.location.href = `select.html?name=${encodeURIComponent(name)}`;
|
try {
|
||||||
} else if (randomPrize === '再来一次') {
|
const response = await fetch('http://localhost:3000/api/update-score', {
|
||||||
userPoints += 20;
|
method: 'POST',
|
||||||
localStorage.setItem(name, userPoints);
|
headers: {
|
||||||
} else if (randomPrize === '什么也没有发生') {
|
'Content-Type': 'application/json',
|
||||||
await sleep(1000);
|
},
|
||||||
window.location.href = `answer.html?name=${encodeURIComponent(name)}`;
|
body: JSON.stringify({ student_id, points }),
|
||||||
} else if (randomPrize === '加30积分且跳过') {
|
});
|
||||||
userPoints += 30;
|
|
||||||
localStorage.setItem(name, userPoints);
|
if (!response.ok) {
|
||||||
await sleep(1000);
|
throw new Error('网络响应不正常');
|
||||||
window.location.href = `select.html?name=${encodeURIComponent(name)}`;
|
}
|
||||||
}
|
|
||||||
} else {
|
// 使用 text() 解析响应,得到字符串形式的分数
|
||||||
resultDisplay.textContent = "积分不足,无法抽奖!";
|
const data = await response.text();
|
||||||
loadingIndicator.style.display = 'block'; // 显示加载提示
|
let score = Number(data); // 转换为数字
|
||||||
await sleep(1000);
|
return score; // 返回数字
|
||||||
window.location.href = `answer.html?name=${encodeURIComponent(name)}`;
|
} catch (error) {
|
||||||
}
|
console.error('分数更新失败:', error);
|
||||||
});
|
return null; // 返回 null 表示更新失败
|
||||||
</script>
|
}
|
||||||
</body>
|
}
|
||||||
</html>
|
|
||||||
|
|
||||||
|
// 初始化函数,用于设置用户积分
|
||||||
|
async function init() {
|
||||||
|
userPoints = await fetchStudentScore(student_id); // 获取分数并存储到全局变量
|
||||||
|
pointsDisplay.textContent = `${student_name} 的当前积分: ${userPoints}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 执行初始化函数
|
||||||
|
init();
|
||||||
|
|
||||||
|
// 设置返回按钮的 URL
|
||||||
|
backButton.onclick = () => {
|
||||||
|
loadingIndicator.style.display = 'block'; // 显示加载提示
|
||||||
|
window.location.href = `choice.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
// 开始抽奖
|
||||||
|
startLotteryButton.addEventListener('click', async () => {
|
||||||
|
if (userPoints >= 2) {
|
||||||
|
userPoints = await updateScore(student_id, -2); // 积分-2
|
||||||
|
|
||||||
|
pointsDisplay.textContent = `${student_name} 的当前积分: ${userPoints}`;
|
||||||
|
|
||||||
|
// 随机选择奖品
|
||||||
|
const prizes = ["跳过权", "再来一次", "什么也没有发生", "加3积分且跳过"];
|
||||||
|
const randomPrize = prizes[Math.floor(Math.random() * prizes.length)];
|
||||||
|
resultDisplay.textContent = `你赢得了: ${randomPrize}`;
|
||||||
|
|
||||||
|
// 等待 2 秒以展示结果
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 2000));
|
||||||
|
loadingIndicator.style.display = 'block'; // 显示加载提示
|
||||||
|
|
||||||
|
if (randomPrize === '跳过权') {
|
||||||
|
await sleep(2000);
|
||||||
|
window.location.href = `select.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (randomPrize === '再来一次') {
|
||||||
|
userPoints = await updateScore(student_id, 2); // 积分返回2
|
||||||
|
await sleep(2000);
|
||||||
|
window.location.href = `lottery.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (randomPrize === '什么也没有发生') {
|
||||||
|
await sleep(2000);
|
||||||
|
window.location.href = `answer.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (randomPrize === '加3积分且跳过') {
|
||||||
|
userPoints = await updateScore(student_id, 3); // 积分+3
|
||||||
|
await sleep(2000);
|
||||||
|
window.location.href = `select.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
resultDisplay.textContent = "积分不足,无法抽奖!返回回答问题";
|
||||||
|
loadingIndicator.style.display = 'block'; // 显示加载提示
|
||||||
|
await sleep(2000);
|
||||||
|
window.location.href = `answer.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"body-parser": "^1.20.3",
|
||||||
|
"express": "^4.21.0",
|
||||||
|
"multer": "^1.4.5-lts.1",
|
||||||
|
"mysql2": "^3.11.3",
|
||||||
|
"xlsx": "^0.18.5"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,47 @@
|
|||||||
|
const pool = require('../db');
|
||||||
|
|
||||||
|
async function selectStudent(req, res) {
|
||||||
|
try {
|
||||||
|
const connection = await pool.getConnection();
|
||||||
|
|
||||||
|
// 从数据库查询学生
|
||||||
|
const [students] = await connection.query('SELECT * FROM students');
|
||||||
|
|
||||||
|
// 计算权重的总和(使用 softmax 权重计算)
|
||||||
|
const totalWeight = students.reduce((acc, student) => acc + Math.exp(-student.score), 0);
|
||||||
|
|
||||||
|
// 将每个学生的权重归一化
|
||||||
|
const weightedStudents = students.map(student => ({
|
||||||
|
student,
|
||||||
|
weight: Math.exp(-student.score) / totalWeight,
|
||||||
|
}));
|
||||||
|
|
||||||
|
// 生成随机数
|
||||||
|
const random = Math.random(); // 介于 0 和 1 之间
|
||||||
|
let sum = 0; // 用于累加权重
|
||||||
|
let selectedStudent = null;
|
||||||
|
|
||||||
|
// 遍历加权后的学生,累加权重,并判断随机数落在哪个学生的区间
|
||||||
|
for (let i = 0; i < weightedStudents.length; i++) {
|
||||||
|
sum += weightedStudents[i].weight; // 累加当前学生的权重
|
||||||
|
if (random <= sum) { // 如果随机数小于或等于当前的累积权重
|
||||||
|
selectedStudent = weightedStudents[i].student; // 选中该学生
|
||||||
|
break; // 找到后立即退出循环
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (selectedStudent) {
|
||||||
|
res.send({ student_name: selectedStudent.student_name,
|
||||||
|
student_id: selectedStudent.student_id
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
res.status(404).send({ message: '无学生数据' });
|
||||||
|
}
|
||||||
|
|
||||||
|
connection.release();
|
||||||
|
} catch (error) {
|
||||||
|
res.status(500).send({ error: '随机选择学生失败' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { selectStudent };
|
@ -0,0 +1,25 @@
|
|||||||
|
const pool = require('../db');
|
||||||
|
|
||||||
|
async function get_descend_Ranking(req, res) {
|
||||||
|
try {
|
||||||
|
const connection = await pool.getConnection();
|
||||||
|
const [ranking] = await connection.query('SELECT student_name, student_id, score FROM students ORDER BY score DESC');
|
||||||
|
connection.release();
|
||||||
|
res.json(ranking);
|
||||||
|
} catch (error) {
|
||||||
|
res.status(500).send({ error: '无法获取排名' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function get_ascend_Ranking(req, res) {
|
||||||
|
try {
|
||||||
|
const connection = await pool.getConnection();
|
||||||
|
const [ranking] = await connection.query('SELECT student_name, student_id, score FROM students ORDER BY score ASC');
|
||||||
|
connection.release();
|
||||||
|
res.json(ranking);
|
||||||
|
} catch (error) {
|
||||||
|
res.status(500).send({ error: '无法获取排名' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { get_ascend_Ranking, get_descend_Ranking };
|
@ -0,0 +1,50 @@
|
|||||||
|
const express = require('express');
|
||||||
|
const router = express.Router();
|
||||||
|
const multer = require('multer');
|
||||||
|
const randomSelect = require('./services/randomSelect');
|
||||||
|
const ranking = require('./services/ranking');
|
||||||
|
const classManager = require('./services/classManager');
|
||||||
|
const scoreManager = require('./services/scoreManager');
|
||||||
|
const TableManager = require('./services/delete-table');
|
||||||
|
const pool = require('./db');
|
||||||
|
// 文件上传配置
|
||||||
|
const upload = multer({ dest: 'uploads/' });
|
||||||
|
|
||||||
|
// 路由 - 添加班级
|
||||||
|
router.post('/upload', upload.single('file'), classManager.addClass);
|
||||||
|
|
||||||
|
// 路由 - 随机点名
|
||||||
|
router.get('/random-call', randomSelect.selectStudent);
|
||||||
|
|
||||||
|
// 路由 - 获取排名
|
||||||
|
router.get('/ascend_ranking', ranking.get_ascend_Ranking);
|
||||||
|
router.get('/descend_ranking', ranking.get_descend_Ranking);
|
||||||
|
|
||||||
|
// 路由 - 更新分数
|
||||||
|
router.post('/update-score', scoreManager.updateScore);
|
||||||
|
|
||||||
|
//路由 - 获取某个id的分数
|
||||||
|
router.post('/get-score', scoreManager.getStudentScore);
|
||||||
|
|
||||||
|
//路由 - 删除班级
|
||||||
|
router.post('/delete-table', TableManager.deleteTable);
|
||||||
|
|
||||||
|
|
||||||
|
// 获取全部学生名单
|
||||||
|
router.get('/get-students', async (req, res) => {
|
||||||
|
let connection; // 声明连接变量
|
||||||
|
try {
|
||||||
|
connection = await pool.getConnection(); // 从连接池获取连接
|
||||||
|
const [students] = await connection.query('SELECT student_name FROM students'); // 执行查询
|
||||||
|
const studentNames = students.map(student => ({ student_name: student.student_name })); // 只保留 student_name 字段
|
||||||
|
res.json(studentNames); // 返回只包含 student_name 的结果
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error fetching students:', error); // 记录错误信息
|
||||||
|
res.status(500).send({ error: 'Failed to fetch students' }); // 返回500错误响应
|
||||||
|
} finally {
|
||||||
|
if (connection) connection.release(); // 确保连接被释放
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
module.exports = router;
|
@ -1,197 +1,249 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="zh-CN">
|
<html lang="zh-CN">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>积分显示</title>
|
<title>积分显示</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||||
background: linear-gradient(135deg, #a18cd1, #fbc2eb);
|
background: linear-gradient(135deg, #a18cd1, #fbc2eb);
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
.container {
|
.container {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
background: rgba(255, 255, 255, 0.85);
|
background: rgba(255, 255, 255, 0.85);
|
||||||
padding: 40px;
|
padding: 40px;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
|
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
|
||||||
backdrop-filter: blur(8.5px);
|
backdrop-filter: blur(8.5px);
|
||||||
-webkit-backdrop-filter: blur(8.5px);
|
-webkit-backdrop-filter: blur(8.5px);
|
||||||
border: 1px solid rgba(255, 255, 255, 0.18);
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
color: #ff5722;
|
color: #ff5722;
|
||||||
}
|
}
|
||||||
#sortButton {
|
#sortButton {
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
background-color: #2196F3;
|
background-color: #2196F3;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background-color 0.3s, transform 0.2s;
|
transition: background-color 0.3s, transform 0.2s;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
#sortButton:hover {
|
#sortButton:hover {
|
||||||
background-color: #1e88e5;
|
background-color: #1e88e5;
|
||||||
transform: scale(1.05);
|
transform: scale(1.05);
|
||||||
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
th, td {
|
th, td {
|
||||||
padding: 12px 15px;
|
padding: 12px 15px;
|
||||||
border-bottom: 1px solid #ddd;
|
border-bottom: 1px solid #ddd;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
th {
|
th {
|
||||||
background-color: #4CAF50;
|
background-color: #4CAF50;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
tr:hover {
|
tr:hover {
|
||||||
background-color: #f1f1f1;
|
background-color: #f1f1f1;
|
||||||
}
|
}
|
||||||
.button-group {
|
.button-group {
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
}
|
}
|
||||||
.back-button, .clear-button {
|
.back-button, .clear-button {
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background-color 0.3s, transform 0.2s;
|
transition: background-color 0.3s, transform 0.2s;
|
||||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
.back-button {
|
.back-button {
|
||||||
background-color: #2196F3;
|
background-color: #2196F3;
|
||||||
}
|
}
|
||||||
.back-button:hover {
|
.back-button:hover {
|
||||||
background-color: #1e88e5;
|
background-color: #1e88e5;
|
||||||
transform: scale(1.05);
|
transform: scale(1.05);
|
||||||
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
.clear-button {
|
.clear-button {
|
||||||
background-color: #f44336;
|
background-color: #f44336;
|
||||||
}
|
}
|
||||||
.clear-button:hover {
|
.clear-button:hover {
|
||||||
background-color: #e53935;
|
background-color: #e53935;
|
||||||
transform: scale(1.05);
|
transform: scale(1.05);
|
||||||
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
th, td {
|
th, td {
|
||||||
padding: 8px 10px;
|
padding: 8px 10px;
|
||||||
}
|
}
|
||||||
#sortButton, .button-group button {
|
#sortButton, .button-group button {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>积分显示</h1>
|
<h1>积分显示</h1>
|
||||||
<button id="sortButton">切换排序 (降序)</button>
|
<button id="sortButton">切换排序 (降序)</button>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>姓名</th>
|
<th>姓名</th>
|
||||||
<th>积分</th>
|
<th>学号</th>
|
||||||
</tr>
|
<th>积分</th>
|
||||||
</thead>
|
</tr>
|
||||||
<tbody id="studentList">
|
</thead>
|
||||||
<!-- 学生积分将在此处显示 -->
|
<tbody id="studentList">
|
||||||
</tbody>
|
<!-- 学生积分将在此处显示 -->
|
||||||
</table>
|
</tbody>
|
||||||
<div class="button-group">
|
</table>
|
||||||
<button class="back-button" onclick="window.location.href='index.html'">返回主页面</button>
|
<div class="button-group">
|
||||||
<button class="clear-button" id="clearButton">清除所有数据</button>
|
<button class="back-button" onclick="window.location.href='index.html'">返回主页面</button>
|
||||||
</div>
|
<button class="clear-button" id="clearButton">清除所有数据</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<script>
|
|
||||||
const studentList = document.getElementById('studentList');
|
<script>
|
||||||
const sortButton = document.getElementById('sortButton');
|
const studentList = document.getElementById('studentList');
|
||||||
const clearButton = document.getElementById('clearButton');
|
const sortButton = document.getElementById('sortButton');
|
||||||
let ascending = false; // 默认降序
|
const clearButton = document.getElementById('clearButton');
|
||||||
|
let ascend = false; // 默认降序
|
||||||
// 预定义学生名单
|
|
||||||
const predefinedStudents = [
|
|
||||||
{ name: '张三', points: 0 },
|
//删除表
|
||||||
{ name: '李四', points: 0 },
|
async function deleteTable(tableName) {
|
||||||
{ name: '王五', points: 0 },
|
try {
|
||||||
{ name: '赵六', points: 0 },
|
const response = await fetch('/api/delete-table', {
|
||||||
];
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
// 获取所有学生,包括预定义名单
|
'Content-Type': 'application/json',
|
||||||
function getAllStudents() {
|
},
|
||||||
const students = predefinedStudents.map(student => {
|
body: JSON.stringify({ tableName }),
|
||||||
const storedPoints = localStorage.getItem(student.name);
|
});
|
||||||
return {
|
|
||||||
name: student.name,
|
if (!response.ok) {
|
||||||
points: storedPoints !== null ? parseInt(storedPoints) : student.points
|
throw new Error('删除表失败');
|
||||||
};
|
}
|
||||||
});
|
|
||||||
return students;
|
const data = await response.json();
|
||||||
}
|
alert(data.message); // 成功后显示消息
|
||||||
|
} catch (error) {
|
||||||
// 显示学生积分
|
console.error('删除表操作失败:', error);
|
||||||
function displayStudents() {
|
alert('删除表失败');
|
||||||
const students = getAllStudents();
|
}
|
||||||
students.sort((a, b) => ascending ? a.points - b.points : b.points - a.points);
|
}
|
||||||
studentList.innerHTML = '';
|
|
||||||
students.forEach(student => {
|
|
||||||
studentList.innerHTML += `
|
|
||||||
<tr>
|
// 获取按分数降序排列的学生排名
|
||||||
<td>${student.name}</td>
|
async function fetchDescendRanking() {
|
||||||
<td>${student.points}</td>
|
try {
|
||||||
</tr>
|
const response = await fetch('/api/descend_ranking');
|
||||||
`;
|
if (!response.ok) {
|
||||||
});
|
alert('无法获取降序排名');
|
||||||
}
|
return null;
|
||||||
|
}
|
||||||
// 切换排序
|
|
||||||
sortButton.addEventListener('click', () => {
|
const ranking = await response.json(); // 获取并解析为JSON数组
|
||||||
ascending = !ascending;
|
return ranking; // 返回排名数组
|
||||||
sortButton.textContent = `切换排序 (${ascending ? '升序' : '降序'})`;
|
} catch (error) {
|
||||||
displayStudents();
|
console.error('请求失败:', error);
|
||||||
});
|
return null;
|
||||||
|
}
|
||||||
// 清除所有数据
|
}
|
||||||
clearButton.addEventListener('click', () => {
|
|
||||||
const confirmation = confirm("确定要清除所有学生数据吗?此操作无法撤销!");
|
// 获取按分数升序排列的学生排名
|
||||||
if (confirmation) {
|
async function fetchAscendRanking() {
|
||||||
localStorage.clear();
|
try {
|
||||||
alert("所有数据已清除!");
|
const response = await fetch('/api/ascend_ranking');
|
||||||
displayStudents(); // 重新显示清空后的数据
|
if (!response.ok) {
|
||||||
}
|
alert('无法获取升序排名');
|
||||||
});
|
return null;
|
||||||
|
}
|
||||||
// 初次加载时显示学生积分
|
|
||||||
displayStudents();
|
const ranking = await response.json(); // 获取并解析为JSON数组
|
||||||
</script>
|
return ranking; // 返回排名数组
|
||||||
|
} catch (error) {
|
||||||
</body>
|
console.error('请求失败:', error);
|
||||||
</html>
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function displayStudents() {
|
||||||
|
let ranking; // 声明 ranking 变量
|
||||||
|
if (ascend) {
|
||||||
|
ranking = await fetchAscendRanking(); // 获取升序排名
|
||||||
|
} else {
|
||||||
|
ranking = await fetchDescendRanking(); // 获取降序排名
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检查 ranking 是否为空
|
||||||
|
if (!ranking) {
|
||||||
|
alert('空 ranking');
|
||||||
|
return; // 退出函数
|
||||||
|
}
|
||||||
|
|
||||||
|
studentList.innerHTML = ''; // 清空表格内容
|
||||||
|
// 只显示前五名学生
|
||||||
|
ranking.slice(0, 5).forEach(student => {
|
||||||
|
studentList.innerHTML += `
|
||||||
|
<tr>
|
||||||
|
<td>${student.student_name}</td> <!-- 学生姓名 -->
|
||||||
|
<td>${student.student_id}</td> <!-- 学生ID -->
|
||||||
|
<td>${student.score}</td> <!-- 学生分数 -->
|
||||||
|
</tr>
|
||||||
|
`;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
sortButton.addEventListener('click', () => {
|
||||||
|
ascend = !ascend;
|
||||||
|
sortButton.textContent = `切换排序 (${ascend ? '升序' : '降序'})`;
|
||||||
|
displayStudents();
|
||||||
|
});
|
||||||
|
|
||||||
|
clearButton.addEventListener('click', () => {
|
||||||
|
const confirmation = confirm("确定要清除所有学生数据吗?此操作无法撤销!");
|
||||||
|
if (confirmation) {
|
||||||
|
deleteTable('students');
|
||||||
|
alert("所有信息已清除!");
|
||||||
|
displayStudents(); // 重新显示清空后的数据
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
displayStudents();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
@ -1,153 +1,153 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>随机点名</title>
|
<title>随机点名</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: 'Arial', sans-serif;
|
font-family: 'Arial', sans-serif;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: linear-gradient(135deg, #6e45e2, #88d3ce);
|
background: linear-gradient(135deg, #6e45e2, #88d3ce);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
.container {
|
.container {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: rgba(255, 255, 255, 0.1);
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
#nameDisplay {
|
#nameDisplay {
|
||||||
font-size: 2.5em;
|
font-size: 2.5em;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background-color: rgba(255, 255, 255, 0.2);
|
background-color: rgba(255, 255, 255, 0.2);
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
}
|
}
|
||||||
#nameDisplay.active {
|
#nameDisplay.active {
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
color: #ffeb3b;
|
color: #ffeb3b;
|
||||||
}
|
}
|
||||||
button {
|
button {
|
||||||
padding: 12px 30px;
|
padding: 12px 30px;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
background-color: #ff5722;
|
background-color: #ff5722;
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||||||
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
||||||
}
|
}
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: #ff3d00;
|
background-color: #ff3d00;
|
||||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
button:disabled {
|
button:disabled {
|
||||||
background-color: #999;
|
background-color: #999;
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
button + button {
|
button + button {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div id="nameDisplay">准备开始提问</div>
|
<div id="nameDisplay">准备开始提问</div>
|
||||||
<button id="startButton">开始</button>
|
<button id="startButton">开始</button>
|
||||||
<button id="stopButton" disabled>停止</button>
|
<button id="stopButton" disabled>停止</button>
|
||||||
<button class="back-button" onclick="window.location.href='index.html'">返回主页面</button>
|
<button class="back-button" onclick="window.location.href='index.html'">返回主页面</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
let names = [];
|
let names = [];
|
||||||
let intervalId = null;
|
let intervalId = null;
|
||||||
|
|
||||||
// 获取 DOM 元素
|
// 获取 DOM 元素
|
||||||
const nameDisplay = document.querySelector('#nameDisplay');
|
const nameDisplay = document.querySelector('#nameDisplay');
|
||||||
const startButton = document.querySelector('#startButton');
|
const startButton = document.querySelector('#startButton');
|
||||||
const stopButton = document.querySelector('#stopButton');
|
const stopButton = document.querySelector('#stopButton');
|
||||||
|
|
||||||
// 页面加载时获取学生名单
|
// 页面加载时获取学生名单
|
||||||
window.addEventListener('DOMContentLoaded', fetchStudents);
|
window.addEventListener('DOMContentLoaded', fetchStudents);
|
||||||
|
|
||||||
// 获取学生名单
|
// 获取学生名单
|
||||||
async function fetchStudents() {
|
async function fetchStudents() {
|
||||||
try {
|
try {
|
||||||
const response = await fetch('/api/get-students');
|
const response = await fetch('/api/get-students');
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new Error('Network response was not ok');
|
throw new Error('Network response was not ok');
|
||||||
}
|
}
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
names = data.map(student => student.student_name);
|
names = data.map(student => student.student_name);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error fetching student list:', error);
|
console.error('Error fetching student list:', error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 动态更新显示效果
|
// 动态更新显示效果
|
||||||
const updateNameDisplay = (name) => {
|
const updateNameDisplay = (name) => {
|
||||||
nameDisplay.textContent = `点到: ${name}`;
|
nameDisplay.textContent = `点到: ${name}`;
|
||||||
nameDisplay.classList.add('active');
|
nameDisplay.classList.add('active');
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
nameDisplay.classList.remove('active');
|
nameDisplay.classList.remove('active');
|
||||||
}, 300);
|
}, 300);
|
||||||
};
|
};
|
||||||
|
|
||||||
// 开始滚动显示
|
// 开始滚动显示
|
||||||
startButton.addEventListener('click', () => {
|
startButton.addEventListener('click', () => {
|
||||||
startButton.disabled = true;
|
startButton.disabled = true;
|
||||||
stopButton.disabled = false;
|
stopButton.disabled = false;
|
||||||
|
|
||||||
intervalId = setInterval(() => {
|
intervalId = setInterval(() => {
|
||||||
// 从 names 数组中随机选择一个名字进行滚动显示
|
// 从 names 数组中随机选择一个名字进行滚动显示
|
||||||
const randomIndex = Math.floor(Math.random() * names.length);
|
const randomIndex = Math.floor(Math.random() * names.length);
|
||||||
const selectedName = names[randomIndex];
|
const selectedName = names[randomIndex];
|
||||||
|
|
||||||
// 更新显示选中的名字
|
// 更新显示选中的名字
|
||||||
updateNameDisplay(selectedName);
|
updateNameDisplay(selectedName);
|
||||||
}, 100); // 每100毫秒滚动显示一次
|
}, 100); // 每100毫秒滚动显示一次
|
||||||
});
|
});
|
||||||
|
|
||||||
// 停止滚动并通过后端决定最终选择的学生
|
// 停止滚动并通过后端决定最终选择的学生
|
||||||
stopButton.addEventListener('click', () => {
|
stopButton.addEventListener('click', async () => {
|
||||||
clearInterval(intervalId);
|
clearInterval(intervalId);
|
||||||
startButton.disabled = false;
|
startButton.disabled = false;
|
||||||
stopButton.disabled = true;
|
stopButton.disabled = true;
|
||||||
|
|
||||||
// 调用后端接口获取最终选中的学生
|
try {
|
||||||
fetch('/api/random-call')
|
const response = await fetch('/api/random-call');
|
||||||
.then(response => {
|
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new Error('Network response was not ok');
|
throw new Error('Network response was not ok');
|
||||||
}
|
}
|
||||||
return response.json();
|
|
||||||
})
|
const data = await response.json();
|
||||||
.then(data => {
|
// 从后端返回的数据中获取学生名字
|
||||||
// 从后端返回的数据中获取学生名字
|
const selectedName = data.student_name; // student_name 属性
|
||||||
if (data.student && data.student.name) {
|
|
||||||
const selectedName = data.student.name;
|
if (selectedName) {
|
||||||
// 更新显示选中的学生
|
// 更新显示选中的学生
|
||||||
updateNameDisplay(selectedName);
|
updateNameDisplay(selectedName);
|
||||||
// 跳转到新页面并传递被选中的名字
|
// 跳转到新页面并传递被选中的名字
|
||||||
window.location.href = `choice.html?name=${encodeURIComponent(selectedName)}`;
|
window.location.href = `choice.html?student_name=${encodeURIComponent(data.student_name)}&student_id=${encodeURIComponent(data.student_id)}`;
|
||||||
} else {
|
} else {
|
||||||
console.error('未返回有效学生数据');
|
console.error('未返回有效学生数据');
|
||||||
}
|
}
|
||||||
})
|
} catch (error) {
|
||||||
.catch(error => {
|
console.error('请求失败:', error);
|
||||||
console.error('请求失败:', error);
|
}
|
||||||
});
|
});
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
const express = require('express');
|
||||||
|
const path = require('path');
|
||||||
|
const bodyParser = require('body-parser');
|
||||||
|
const router = require('./router');
|
||||||
|
const app = express();
|
||||||
|
|
||||||
|
// 中间件
|
||||||
|
app.use(bodyParser.json());
|
||||||
|
app.use(bodyParser.urlencoded({ extended: true }));
|
||||||
|
|
||||||
|
// API 路由
|
||||||
|
app.use('/api', router);
|
||||||
|
|
||||||
|
// 静态文件
|
||||||
|
app.use(express.static(path.join(__dirname, 'public')));
|
||||||
|
|
||||||
|
// 处理 SPA 路由
|
||||||
|
app.get('*', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'public', 'index.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
// 启动服务器
|
||||||
|
const PORT = process.env.PORT || 3000;
|
||||||
|
app.listen(PORT, () => {
|
||||||
|
console.log(`Server running on port ${PORT}`);
|
||||||
|
});
|
Loading…
Reference in new issue