我目前正在开发一个FAQ聊天机器人。
根据用户的参数,一些答案是具体的,所以我决定使用 Webhook,这样我就可以从我的 firebase 数据库中获取响应。
经过一些研究,我注意到 Dialogflow 是异步工作的,我不得不使用 Promise,但我仍然无法使响应动态和同步。
这是我的代码:
function fetch_data(param)
{
return function(agent)
{
console.log("Fetching informations ...");
var result = database_call();
result.then(function(response)
{
agent.add(response);
});
agent.add("Timeout !")
};
}
function database_call()
{
return new Promise((resolve, reject) => {
var ref = db.ref("test/");
var refTest = ref.child('test');
refTest.on("value", function(snapshot)
{
console.log(snapshot.val());
resolve(snapshot.val());
});
agent.add("[TIMEOUT] Cannot fetch data !")
});
}
我总是收到消息:尽管有 Promise 函数,但无法获取数据。
在我的日志中,我注意到数据总是在"超时"消息几秒钟后打印。
因为它是异步的,所以它将始终打印超时。
将超时移动到引用测试的失败案例。
refTest.on("value", function(snapshot)
{
console.log(snapshot.val());
resolve(snapshot.val());
});
refTest.on("error", function(snapshot)
{
agent.add("[TIMEOUT] Cannot fetch data !")
reject();
});
然后,您可以捕获错误。
result.then(function(response)
{
agent.add(response);
}).catch(() => {
agent.add("Timeout !")
});