nodejs连接数据库报错TypeError: Cannot read properties of undefined (reading 'connect')

问题遇到的现象和发生背景

nodejs 连接数据库报错 TypeError: Cannot read properties of undefined (reading 'connect') 代码如下图

img

问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

怎呢解决?

https://blog.csdn.net/xiasohuai/article/details/80995946
数据库能连上不

conn没有connect方法,建议查一下文档,看看nodejs如何连接mysql

getConnection 里面为啥还要再connect呢,直接使用即可

// For pool initialization, see above
pool.getConnection(function(err, conn) {
// Do something with the connection
conn.query(/* ... */);
})