【Node】Egg.js连接mysql

gengboxb 888 0

1、安装安装egg-mysql模块

npm安装命令如下:

npm i egg-mysql --save

yarn安装命令如下:

yarn add egg-mysql

2、配置/config/plugin.js

exports.mysql = {
  enable: true, // 是否开启
  package: 'egg-mysql', // 对应依赖包
};

3、/config/config.default.js文件数据库连接配置

  // 连接数据库
  config.mysql = {
    // database configuration
    client: {
      // 连接地址
      host: 'localhost',
      // 端口
      port: '3306',
      // 用户名
      user: 'root',
      // 密码
      password: 'root123',
      // 数据库
      database: 'react_blog',
    },
    // load into app, default is open
    app: true,
    // load into agent, default is close
    agent: false,
  };

发表评论 取消回复
表情 图片 链接 代码

分享