1 Star 0 Fork 1

docscript/securityOa

forked from bingyu123/securityOa 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.ts 454 Bytes
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2022-11-30 09:22 . init
// 配置相关
// 数据库的增删改查 封装的方法
// ctx : koa 接口 ctx.query 查询 ctx.delete : 删除
import Koa from 'koa';
import { insert, query, update, deletes, select } from './database/dbUtils';
// app : koa的实例
const app = new Koa();
// 增删改查 :
// typeorm
// 全局都可以使用
app.context.key = 'ice';
app.context.db = {
insert,
query,
update,
deletes,
select,
};
// ctx.key : ice
export default app;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/awhitefox/security-oa.git
[email protected]:awhitefox/security-oa.git
awhitefox
security-oa
securityOa
master

搜索帮助