1 Star 0 Fork 0

笨笨/twbe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sqlPoor.js 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
周子健 提交于 2023-09-14 18:01 . 优化接口权限控制
const { Sequelize, Model, DataTypes } = require("sequelize");
const fs = require('fs');
const path = require('path');
// 方法 3: 分别传递参数 (其它数据库)
const sequelize = new Sequelize('tw', 'root', 'root', {
host: 'localhost',
dialect: 'mysql'
});
let databases = {}
async function initSql() {
const directoryPath = './test'; // 替换为您的目录路径
fs.readdir(directoryPath, (err, files) => {
if (err) {
console.error('Error reading directory:', err);
return;
}
files.forEach(async (file) => {
if (path.extname(file) === '.js') {
const moduleName = path.basename(file, '.js');
databases[moduleName] = require(`./${directoryPath}/${file}`)(sequelize, DataTypes)
// const module = require(`./${directoryPath}/${file}`); // 相对路径,根据需要调整
// 在这里使用模块
// module.doSomething();
}
// await sequelize.sync({ force: true });
});
global.database = databases
// database.department.belongsTo(database.user, { foreignKey: 'dept_id' });
database.user.belongsTo(database.department, { foreignKey: 'dept_id' });
database.user.belongsTo(database.identity, { foreignKey: 'qx' });
});
}
initSql()
module.exports = databases;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/bendantada/twbe.git
git@gitee.com:bendantada/twbe.git
bendantada
twbe
twbe
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385