mysql2 TypeError: f.ClientHandshake is not a constructor
mysql2 TypeError: f.ClientHandshake is not a constructor
我正在尝试使用 mysql2 连接到 RDS MySQL 实例。当我在本地使用该包时,一切正常。但是,当我在 AWS Lambda 函数中使用它时,我得到了这个神秘的错误:
TypeError: f.ClientHandshake is not a constructor
at new g (/var/task/index.js:275:62824)
at new o (/var/task/index.js:275:224046)
at e.exports.getConnection (/var/task/index.js:275:218705)
at e.exports.execute (/var/task/index.js:275:220197)
at /var/task/index.js:275:372341
at new Promise (<anonymous>)
at c.execute (/var/task/index.js:275:372308)
at /var/task/index.js:357:14189
at E (/var/task/index.js:316:24416)
at Generator._invoke (/var/task/index.js:316:24204)
知道问题出在哪里吗?我确信 roles/security 组都配置正确。
原来在 Webpack 中禁用缩小解决了这个问题。
这可以通过更新 webpack.config.js
以包含
来完成
optimization: {
// We no not want to minimize our code.
minimize: false
},
我正在尝试使用 mysql2 连接到 RDS MySQL 实例。当我在本地使用该包时,一切正常。但是,当我在 AWS Lambda 函数中使用它时,我得到了这个神秘的错误:
TypeError: f.ClientHandshake is not a constructor
at new g (/var/task/index.js:275:62824)
at new o (/var/task/index.js:275:224046)
at e.exports.getConnection (/var/task/index.js:275:218705)
at e.exports.execute (/var/task/index.js:275:220197)
at /var/task/index.js:275:372341
at new Promise (<anonymous>)
at c.execute (/var/task/index.js:275:372308)
at /var/task/index.js:357:14189
at E (/var/task/index.js:316:24416)
at Generator._invoke (/var/task/index.js:316:24204)
知道问题出在哪里吗?我确信 roles/security 组都配置正确。
原来在 Webpack 中禁用缩小解决了这个问题。
这可以通过更新 webpack.config.js
以包含
optimization: {
// We no not want to minimize our code.
minimize: false
},