关于在eggjs中使用mysql进行数据处理
使用docker 安装mysql 数据库
1 | docker pull mysql // 默认拉取最新版本的mysql mysql:5.7 拉取版本号为5.7的mysql |
eggjs 使用mysql
安装mysql插件
1 | npm install egg-mysql --save |
在plugin.js 和 config.default.js 配置mysql
1 | // plugin.js |
在项目中使用mysql
查询 1
2
3
4// 支持自定义查询语句 变量使用?代替
app.mysql.query('sql语句', [value1, value2, ...])
eg: app.mysql.query('select * from `user` where id = ? & name = ?', [id, name])
插入
1 | app.mysql.insert('table', Object) |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment
DisqusValine