如何链接多个对话框?
我正在使用C#Bot Builder进行漫游。
现在,我知道有很多关于如何处理链接对话框的例子。 像FacebookAuthDialog或ChainedEchoDialog一样。
我想要做的是:用户必须通过授权对话框,当完成时,我想立即将用户放入“UserDialog”,他可以使用所有需要他认证的功能。
这是我的代码:
public static readonly IDialog<string> dialog = Chain
.PostToChain()
.Switch(
new Case<Message, IDialog<string>>((msg) =>
{
var userInfo = new StorageClient().GetUser(msg.From.Id);
if (userInfo != null && userInfo.Activated)
return false;
else
return true;
}, (ctx, msg) =>
{
return Chain.ContinueWith(new AuthenticationDialog(),
async (context, res) =>
{
var result = await res;
return Chain.Return($"You successfully activated your account.");
});
}),
new Case<Message, IDialog<string>>((msg) =>
{
var userInfo = new StorageClient().GetUser(msg.From.Id);
if (userInfo != null && userInfo.Activated)
return true;
else
return false;
}, (ctx, msg) =>
{
var service = new LuisService();
// User wants to login, send the message to Facebook Auth Dialog
return Chain.ContinueWith(new UserDialog(msg, service),
async (context, res) =>
{
return Chain.Return($"");
});
}),
new DefaultCase<Message, IDialog<string>>((ctx, msg) =>
{
return Chain.Return("Something went wrong.");
})
).Unwrap().PostToUser();
这种作品。 我使用MessageController调用此对话框
await Conversation.SendAsync(message, () => ManagingDialog.dialog);
但是这不合适。 每次对话完成后,我也必须调用这个对话框两次,因为当用户输入什么时候什么也没有发生,因为只有对话框启动。
我试图在执行AuthenticationDialog Case之后再添加一个ContinueWith,但是我无法让它工作。
我真的很感谢一些代码片段的帮助。 我完全无能为力。
问候
这里是BotBuilder的一个例子:
public async Task SampleChain_Quiz()
{
var quiz = Chain
.PostToChain()
.Select(_ => "how many questions?")
.PostToUser()
.WaitToBot()
.Select(m => int.Parse(m.Text))
.Select(count => Enumerable.Range(0, count).Select(index => Chain.Return($"question {index + 1}?").PostToUser().WaitToBot().Select(m => m.Text)))
.Fold((l, r) => l + "," + r)
.Select(answers => "your answers were: " + answers)
.PostToUser();
using (var container = Build(Options.ResolveDialogFromContainer))
{
var builder = new ContainerBuilder();
builder
.RegisterInstance(quiz)
.As<IDialog<object>>();
builder.Update(container);
await AssertScriptAsync(container,
"hello",
"how many questions?",
"3",
"question 1?",
"A",
"question 2?",
"B",
"question 3?",
"C",
"your answers were: A,B,C"
);
}
}
在BotBuilder的github网站上有关于这个话题的很好的讨论
链接地址: http://www.djcxy.com/p/34975.html上一篇: How to Chain multiple Dialogs?
下一篇: Is there a way to improve linting errors highlight in Visual Studio Code?