我正在尝试调用在 SAM 本地环境中托管的 Node.JS 中编写的 lamda 函数。该函数正在连接到本地托管的 MySQL 数据库。
代码如下:
var mysql = require('mysql');
exports.handler = (event, context, callback) => {
let id = (event.pathParameters || {}).division || false;
var con = mysql.createConnection({
host: "host.docker.internal",
user: "root",
password: "root",
database: "squashprod"
});
switch(event.httpMethod){
case "GET":
con.connect(function(err) {
if (err) throw err;
con.query("SELECT * FROM players where division_id = 1",
function (err, result, fields) {
if (err) throw err;
//console.log(result);
return callback(null, {body: "This message does not work"});
}
);
});
// return callback(null, {body: "This message works"});
break;
default:
// Send HTTP 501: Not Implemented
console.log("Error: unsupported HTTP method (" + event.httpMethod + ")");
callback(null, { statusCode: 501 })
}
}
但是回调(带有消息“此消息不起作用”)没有出现。我知道它正在调用数据库,因为 console.log 调用会打印结果。当此代码运行时,我在浏览器中收到内部服务器错误以及来自 SAM Local 的以下消息:
2018-09-13 20:46:18 Function 'TableGetTest' timed out after 3 seconds
2018-09-13 20:46:20 Function returned an invalid response (must include one of: body, headers or statusCode in the response object). Response received: b''
2018-09-13 20:46:20 127.0.0.1 - - [13/Sep/2018 20:46:20] "GET /TableGetTest/2 HTTP/1.1" 502 -
2018-09-13 20:46:20 127.0.0.1 - - [13/Sep/2018 20:46:20] "GET /favicon.ico HTTP/1.1" 403 -
如果我注释掉对数据库的调用并使用“此消息有效”的回调,则没有超时并且该消息出现在浏览器中
我知道数据库代码是健全的,因为它独立工作。我觉得这与回调有关,但我对 Node 的了解不够深入,无法理解。
我正在拔掉我的头发。任何帮助将不胜感激!