我目前正在开发一个常见问题聊天机器人。
一些答案将具体取决于用户的参数,所以我决定使用 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 功能,但无法获取数据。
在我的日志中,我注意到数据总是在“超时”消息后几秒钟打印出来。