我正在使用 MS Bot Framework 和 LUIS 开发一个机器人,并且在我的对话流中有很多带有按钮的自适应卡片。我需要一种使用按钮来处理此流程的方法(准确地说是 Action.Submit 按钮)。
我第一次尝试:
public async Task<HttpResponseMessage> Post([FromBody]Activity activity)
{
if (activity.Type == ActivityTypes.Message)
{
if (activity.Text != null & activity.Value == null)
{
await Conversation.SendAsync(activity, () => new RootLuisDialog());
}
else if (activity.Text == null & activity.Value != null)
{
await Conversation.SendAsync(activity, () => new ButtonHandler());
}
}
else
{
this.HandleSystemMessage(activity);
}
var response = Request.CreateResponse(HttpStatusCode.OK);
return response;
}
因为当单击自适应卡片上的按钮时,activity.Value
包含 Action.Submit 按钮的属性。
这个想法是能够将按钮控制器和意图控制器分开,即RootLuisDialog()
. 但它不起作用,我不知道为什么:使用这段代码,总是RootLuisDialog()
退出。换句话说,对话框留在里面RootLuisDialog()
第二个想法是像这样使用None
Luis Intent:
[LuisIntent("")]
[LuisIntent("None")]
public async Task None(IDialogContext context, LuisResult result)
{
var act = context.Activity as IMessageActivity;
string message = String.Empty;
if (act.Text != null & act.Value == null)
{
message = $"Sorry, I did not understand '{act.Text}'. Type 'help' if you need assistance.";
}
else if (act.Text == null & act.Value != null)
{
Button btn = JsonConvert.DeserializeObject<Button>(act.Value.ToString());
message = $"You clicked on {btn.Type}";
}
await context.PostAsync(message);
context.Wait(this.MessageReceived);
}
None
虽然这可行,但按意图按下按钮代码看起来并不正确。
我还尝试context.Wait(buttonHandler)
了buttonHandler
处理按钮按下的异步函数,但后来我收到了这个错误消息:
"exceptionMessage": "Object reference not set to an instance of an object.",
"exceptionType": "System.NullReferenceException",
我确信我想要实现的目标已经有了一个很好的答案,但这是我的第一个 C# 项目/任务,我需要帮助来解决这个问题。提前谢谢了!!!