gpt4 book ai didi

javascript - Microsoft Bot Framework 中是否需要为每个 'endDialog' 调用 'beginDialog' ?什么时候应该调用 'endDialog' ?

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

编辑:

在查看源代码时,我在botbuilder.d.ts中发现了以下内容。看来在 waterfall 里你不需要打电话endDialog明确吗?

/* You can terminate a waterfall early by either falling through every step of the waterfall using
* calls to `skip()` or simply not starting another prompt or dialog.
*
* __note:__ Waterfalls have a hidden last step which will automatically end the current dialog if
* if you call a prompt or dialog from the last step. This is useful where you have a deep stack of
* dialogs and want a call to [session.endDialog()](/en-us/node/builder/chat-reference/classes/_botbuilder_d_.session.html#enddialog)
* from the last child on the stack to end the entire stack. The close of the last child will trigger
* all of its parents to move to this hidden step which will cascade the close all the way up the stack.
* This is typically a desired behavior but if you want to avoid it or stop it somewhere in the
* middle you'll need to add a step to the end of your waterfall that either does nothing or calls
* something like [session.send()](/en-us/node/builder/chat-reference/classes/_botbuilder_d_.session.html#send)
* which isn't going to advance the waterfall forward.
* @example
* <pre><code>
* var bot = new builder.BotConnectorBot();
* bot.add('/', [
* function (session) {
* builder.Prompts.text(session, "Hi! What's your name?");
* },
* function (session, results) {
* if (results && results.response) {
* // User answered question.
* session.send("Hello %s.", results.response);
* } else {
* // User said never mind.
* session.send("OK. Goodbye.");
* }
* }
* ]);
* </code></pre>
*/

我正在学习 MS Bot Framework 版本 3——这是他们在这里使用的版本。

我遵循 waterfall 如何工作的概念( https://learn.microsoft.com/en-us/azure/bot-service/nodejs/bot-builder-nodejs-dialog-manage-conversation-flow?view=azure-bot-service-3.0 ),但我不明白的一件事是 endDialog 的作用是什么播放。

例如,在我们正在使用的代码中,有一堆单独的对话框,它们都具有以下形式

module.exports = function showTickets() {
this.bot.dialog('/showAllTickets', [
async function showAllTicketsFn(session, args, next) {
this.beginDialog.bind(this, '/showTickets')(session, args, next);
}.bind(this)
]);
};

基本上是一个对话框加载另一个对话框(中间有一些其他代码,例如在数据存储中设置数据)。无处可去endDialog叫。但在 MS 教程的示例中,每个 waterfall 都以某种形式的 endDialog 结束。 ( endDialogendDialogWithResults 等)。

每个对话框都是用beginDialog“打开”的吗?当 waterfall 完成时,即当数组中传递给 bot.dialog 的函数时,自动“关闭”自身都跑通了? (在上面的代码中, waterfall 只是一步)。

什么时候需要调用endDialog明确吗?

感谢您的帮助!

最佳答案

确实,文档应该说您应该结束对话,而不是必须。如果您不显式调用 EndDialog, waterfall 将自动结束。它更像是一种内置的安全机制,以帮助避免用户陷入困境,忘记在获得结果后调用 enddialog。但在某些情况下,不添加显式 EndDialog 调用也是可以的。更多内容可以在 waterfall here中找到。

一个有效的用例是对话框调用是一个 waterfall ,它只是决定要分支到哪个对话框。一旦分支到给定的对话框,就没有理由添加在该对话框结束后结束的步骤。

但即使在这种情况下,使用 ReplaceDialog 将自己替换为要分支到的对话框可能会更有效。

关于javascript - Microsoft Bot Framework 中是否需要为每个 'endDialog' 调用 'beginDialog' ?什么时候应该调用 'endDialog' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58690001/

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