在egg.js中使用Mysql的步骤如下: 首先安装mysql的驱动包egg-mysql,可以通过npm安装: $ npm in
$ npm install egg-mysql --save
config/plugin.js
配置文件中启用MySQL插件:exports.mysql = {
enable: true,
package: 'egg-mysql',
};
config/config.default.js
配置文件中配置MySQL连接信息:exports.mysql = {
client: {
host: 'localhost',
port: '3306',
user: 'root',
passWord: 'password',
database: 'test',
},
};
const Controller = require('egg').Controller;
class UserController extends Controller {
async index() {
const { ctx } = this;
const user = await this.app.mysql.get('user', { id: 1 });
ctx.body = user;
}
async create() {
const { ctx } = this;
const result = await this.app.mysql.insert('user', { name: 'Alice', age: 18 });
ctx.body = result;
}
async update() {
const { ctx } = this;
const result = await this.app.mysql.update('user', { id: 1, age: 20 });
ctx.body = result;
}
async destroy() {
const { ctx } = this;
const result = await this.app.mysql.delete('user', { id: 1 });
ctx.body = result;
}
}
module.exports = UserController;
这样就可以在Egg.js中使用MySQL进行数据库操作了。
--结束END--
本文标题: egg中mysql的用法是什么
本文链接: https://lsjlt.com/news/594857.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0