作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 BotKit 制作一个网络应用程序聊天机器人(使用 BotkitConversation API)。我想使用用户的输入查询外部 API,然后将一些结果数据返回给用户。我能够将用户的输入存储为对话框对象上的变量(使用 {{vars.key}}
模板),并且可以从 API 访问 JSON 响应并显示在控制台中,但不在聊天窗口中。
我正在尝试使用 convo.setVar()
来存储一些 JSON 数据。我知道 API 调用有效,因为我也 console.log
得到了相同的值,并且它符合预期。
(注意:api_key
和endpoint
之类的东西存储在其他地方,这只是摘录)
/* The Query Dialog */
let DIALOG_ID = 'my_dialog_1';
let query_dialog = new BotkitConversation(DIALOG_ID, controller);
let total = 0;
query_dialog.ask('What search term would you like to search with?', async(queryTerm, query_dialog, bot) => {
query_dialog.setVar('queryTerm', queryTerm);
console.log(`user query is "${ queryTerm }".`);
console.log(`fetching results from: ${endpoint}?api_key=${api_key}&q=${queryTerm}`);
fetch(`${endpoint}?api_key=${api_key}&q=${queryTerm}`)
.then((response) => response.json())
.then((json) => {
query_dialog.setVar('total', json.total);
console.log(`~~total number of results: ${json.total}~~`); // this shows: 2
// bot.say(`there were {{vars.total}} results`); // this never gets called
// bot.say(`there were ${total} results`); // this never gets called
total = json.total;
})
// .then((json) => console.log(`~~total number of results: ${json.total}~~`)) // this shows: 2
// .then((json) => query_dialog.setVar('total', json.total), () => (bot.say(`there were {{vars.total}} results`))) // this doesn't run
.catch(error => console.log(error))
}, 'queryTerm');
query_dialog.say(`user query is {{vars.queryTerm}}.`); // this works as expected
query_dialog.say(`there were {{vars.total}} results`); // shows "" results
// query_dialog.say(`there were ${total} results`); // says "there were 0 results", which is incorrect, and just pulls from whatever `let total` started with
controller.addDialog(query_dialog);
/* End Dialog */
/* Trigger the dialog */
controller.hears('query', 'message', async(bot, message) => {
await bot.beginDialog(DIALOG_ID);
});
正如预期的那样,在聊天窗口中,用户的查询会重复返回给他们:“用户查询是 {your_query}”。然而,显示的下一行是“there were results”,这意味着 vars.total
中没有存储任何内容。实际输出应该是一个数字。
最佳答案
您在这里遇到的问题是对 fetch
的调用返回一个 promise ,并且异步处理函数立即解析,而不是等待 fetch 返回结果并将它们设置到对话框内存空间中.
解决此问题的最简单方法是返回一个 promise ,以便您可以控制它何时解决:
return new Promise(function(resolve, reject) {
/// do fetch here
fetch.then().then().then(resolve)
});
关于javascript - 如何在 BotKit 中存储和访问来自外部 API 请求的对话变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56809619/
我是一名优秀的程序员,十分优秀!