如果在Egg.js中引入MySQL出現問題,可以按照以下步驟解決:
確保已經安裝了MySQL數據庫,并且數據庫服務已經啟動。
在Egg.js項目中安裝相關的MySQL依賴包,可以使用以下命令安裝:
npm install mysql2 --save
config.mysql = {
client: {
host: 'localhost',
port: '3306',
user: 'root',
password: 'password',
database: 'dbname',
},
};
const mysql = require('mysql2/promise');
const config = require('../config/config.default');
async function queryDatabase() {
const connection = await mysql.createConnection(config.mysql.client);
const [rows, fields] = await connection.execute('SELECT * FROM table');
return rows;
}