gpt4 book ai didi

javascript - AWS Lambda 和 Node.js 函数未被调用

转载 作者:行者123 更新时间:2023-12-01 03:29:29 24 4
gpt4 key购买 nike

我对 AWS lambda 和 node.js 都很陌生。我已经研究过一些异步架构,因此我对回调很熟悉,但仍然缺乏经验。我确信这在某种程度上是相关的,但我不明白为什么,因为如果我在本地测试它,它会完美运行。我已正确设置环境变量并测试它是否也已通过。

在下面的代码片段中,我使用 Claudia Bot Builder 来获取 slack-slash-command 消息,并将其传递给此 SlackResponse 函数,该函数使用 Node Hubspot API 按用户名进行查询。由于某种原因,client.contacts 搜索命令永远不会被调用。所有 console.log() 报告都会显示,但搜索的回调似乎永远不会执行,即使是异步执行也是如此。

function SlackResponse(message, request, debug, currentresponse){
var SlackResponse = currentresponse;
var SenderID = message.originalRequest.user_name;
var CustomerID = 0;

if (debug){
SlackResponse += 'Slack Debug On' + '\r';
SlackResponse += 'SenderID: ' + SenderID + '\r';
}
client.useKey(process.env.HAPI_Key);
console.log('API Key set \r');
console.log(message);
console.log(currentresponse);

client.contacts.search(SenderID,
function processSearchResult(err, res) {
console.log('In processSearchResult function \r');
console.log(JSON.stringify(res));
if (err) { console.log('uh oh'); throw err; }
if (res.total === 0)
{
if(debug){console.log('New Customer Identified' + '\r')}

// Create a new Contact
var payload = {
"properties": [
{
"property": "firstname",
"value": SenderID
}]
}
client.contacts.create(payload, function(err, res){
if (err) { throw err; }
CustomerID = res.vid;
if(debug){console.log('New Customer Created with CustomerID: ' + CustomerID + '\r')}
})
}
else
{
CustomerID = res.contacts[0].vid;
if(debug){console.log('Hubspot CustomerID:' + CustomerID + '\r')}
}

}
);
console.log('About to return \r');
return SlackResponse;

}

谁能解释一下为什么会发生这种情况?这是权限问题吗?为什么它在本地运行而不是在 AWS 中运行?

最佳答案

这似乎是 JavaScript promise 问题。

Claudia API 和 Bot Builders 使用 JavaScript Promise 来处理异步操作。如果您在本地运行此示例,它将起作用,因为您的函数将执行,但是如果您在 Lambda 函数上运行它 client.contacts.search(SenderID,) 将破坏 promise 链,并且 Lambda 函数将被关闭,这意味着不会执行任何其他操作。

要解决这个问题,如果 JavaScript 不支持开箱即用的异步操作,您需要将异步操作包装到 JavaScript promise 中。例如:

setTimeout(function () {
return 'Hello'
}, 1000)

应该变成:

return Promise(function(resolve, reject) {
setTimeout(function () {
resolve('Hello')
}, 1000)
})

或者,在您的示例中:

return new Promise(function(resolve, reject) {
client.contacts.search(SenderID, function (err, res) {
if (err) {
return reject(err)
}

// Do your logic
resolve(finalResult)
}
}

关于javascript - AWS Lambda 和 Node.js 函数未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44606992/

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