gpt4 book ai didi

javascript - AWS lambda : test event configuration: Error in JSON event

转载 作者:行者123 更新时间:2023-11-30 11:15:33 26 4
gpt4 key购买 nike

我已经将 node js 应用程序部署到 AWS lambda。我的测试事件中有以下代码:

function getRoutes(callback){
request('http://localhost/php-rest/api.php/routes?filter=route_short_name', function(error, response, body) {
if (!error && response.statusCode == 200) {
message = JSON.stringify(JSON.parse(body));
return callback(message, false);
} else {
return callback(null, error);;
}
});
}

app.get('/getRoutes', function(req, res) {

getRoutes(function(err, data){
if(err) return res.send(err);
res.send(data);
});

});

当我尝试保存时出现以下错误:

There is an error in your JSON event. Please correct it before saving.

最佳答案

这是您创建的 lambda 函数的配置。所以先点击lambda函数。之后,您将看到一个名为功能代码的窗口。在那里你必须写你的处理程序。之后,您可以像以前一样进行测试。 enter image description here enter image description here

关于javascript - AWS lambda : test event configuration: Error in JSON event,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51736845/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com