Files
yunrui_asset/backend/utils/routeLoader.js
T
zhang1106 7f1df28858 feat: 实现ID生成器并重构模型ID生成逻辑
refactor: 统一ID生成方式,使用新的idGenerator模块
refactor: 重构模型ID生成逻辑,允许空ID并在创建前自动生成
fix(roomSchema): 使机房ID字段变为可选并更新前端表单验证
style: 格式化代码并优化导入语句
test: 添加操作日志集成测试文件
docs: 添加错误处理模块文档
2026-04-02 10:34:13 +08:00

26 lines
771 B
JavaScript

const path = require('path');
const routesConfig = require('../config/routes');
function loadRoutes(app) {
const routesDir = path.join(__dirname, '../routes');
routesConfig.forEach(routeConfig => {
try {
const routerPath = path.join(routesDir, routeConfig.file);
const router = require(routerPath);
if (typeof router === 'function') {
app.use(routeConfig.path, router);
console.log(`路由已加载: ${routeConfig.path} -> ${routeConfig.file}`);
} else {
console.warn(`警告: ${routeConfig.file} 没有导出有效的 Express 路由器`);
}
} catch (error) {
console.error(`加载路由失败: ${routeConfig.file}`, error.message);
throw error;
}
});
}
module.exports = loadRoutes;