egg连接mysql数据库配置

egg连接mysql数据库配置

前言
上篇文章已讲到前端和后端的初步搭建。这篇文章介绍后端和数据库的连接和使用。前提是你的电脑上已经下载好了mysql。

在egg项目中安装egg-mysql

npm i egg-mysql --save

启用egg-mysql插件

egg配置数据库连接地址

 const config = exports = {
    // 数据库配置
    mysql: {
      client: {
        host: 'localhost',
        port: '3306',
        user: 'root',
        password: 'root',
        database: 'mysqls',//数据库名称
        multipleStatements: true,
      },
      app: true,
      agent: false,
    },
    }

到这里就配置完毕了;直接sql验证就好。

本文地址:https://blog.csdn.net/big_Cocky/article/details/107165613

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐