gpt4 book ai didi

mysql - 发送消息之前执行查询

转载 作者:行者123 更新时间:2023-11-29 16:17:03 25 4
gpt4 key购买 nike

我正在 NodeJS 中制作一个 Messenger 机器人。我希望用户能够请求他们所有的火车。问题是我们想要在 NodeJS 向用户发送消息之前执行查询。

我搜索了异步函数

function handlePostback(sender_psid, received_postback) {
let response;

// Get the payload for the postback
let payload = received_postback.payload;

// Set the response based on the postback payload
switch(payload){
case "yes" :
let data = null
axios.get('http://api.irail.be/connections/?from=Mechelen&to=Puurs&date=010219&time=1650&timesel=departure&format=json&lang=en&fast=false&typeOfTransport=trains&alerts=false&resul1=1')
.then(function (response) {
// handle success
data = data.response;
})
response = {
"text": data.connections.arrival.name
}
break;
}
callSendAPI(sender_psid, response);
}
function callSendAPI(sender_psid, response) {
// Construct the message body
let request_body = {
"recipient": {
"id": sender_psid
},
"message": response
}
// Send the HTTP request to the Messenger Platform
request({
"uri": "https://graph.facebook.com/v2.6/me/messages",
"qs": { "access_token": PAGE_ACCESS_TOKEN },
"method": "POST",
"json": request_body
}, (err, res, body) => {
if (!err) {
console.log('message sent!')
} else {
console.error("Unable to send message:" + err);
}
});
}

正如您所看到的,在执行查询之前,脚本已经将消息发送给 Messenger 上的用户。

最佳答案

您的代码中存在一些不必要的变量和问题(例如,data = data.response 可能应该是 data = response.data),这将是现代版本具有异步/等待和箭头功能。在这种情况下,您不需要回调函数,callSendAPI 将在 AJAX 请求之后调用。我还删除了 switch,因为一个简单的 if 就足够了:

const handlePostback = async (sender_psid, received_postback) => {
// Get the payload for the postback
const payload = received_postback.payload;

// Set the response based on the postback payload
if (payload === 'yes') {
try {
const response = await axios.get('http://api.irail.be/connections/?from=Mechelen&to=Puurs&date=010219&time=1650&timesel=departure&format=json&lang=en&fast=false&typeOfTransport=trains&alerts=false&resul1=1');
callSendAPI(sender_psid, {
'text': response.data.connections.arrival.name
});
} catch (err) {
console.log(err);
}
}
};

旁注:假设您也使用 superagent,我不会使用 2 种不同的方式来执行 http 请求?因为 http.request 在 Node.js 中是可能的,但是 request 看起来像 super 代理;)

关于mysql - 发送消息之前执行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54693192/

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