1

大家好,我是机器人开发的新手,我想弄清楚如何在 formflow 之后将对话转发到 QnaDialog。我的表单流只是在用户被识别后询问他/她的姓名,之后它会简单地打个招呼(用户名),我想要的是之后的任何消息都将被转发到 QnaDialog,因为用户已经被识别。我曾尝试添加一个检查器来标记一个问候已经完成,但是由于你只被允许一个 Conversation.SendAsync 我现在迷失了关于如何正确纠正这个问题的想法。

形式流

  public class ProfileForm
{
    // these are the fields that will hold the data
    // we will gather with the form
    [Prompt("What is your name? {||}")]
    public string Name;

    // This method 'builds' the form 
    // This method will be called by code we will place
    // in the MakeRootDialog method of the MessagesControlller.cs file
    public static IForm<ProfileForm> BuildForm()
    {
        return new FormBuilder<ProfileForm>()
                .Message("Welcome to the profile bot!")
                .OnCompletion(async (context, profileForm) =>
                {
                    // Set BotUserData
                    context.PrivateConversationData.SetValue<bool>("ProfileComplete", true);
                    context.PrivateConversationData.SetValue<string>("Name", profileForm.Name);
                    // Tell the user that the form is complete
                    await context.PostAsync("Your profile is complete.");
                })
                .Build();
    }


}

消息控制器

public async Task<HttpResponseMessage> Post([FromBody]Activity activity)
    {
        if (activity.Type == ActivityTypes.Message)
        {
            //ConnectorClient connector = new ConnectorClient(new Uri(activity.ServiceUrl));
            //await Conversation.SendAsync(activity, () => new QnADialog());

            #region Formflow

            // Get any saved values
            StateClient sc = activity.GetStateClient();
            BotData userData = sc.BotState.GetPrivateConversationData(
                activity.ChannelId, activity.Conversation.Id, activity.From.Id);
            var boolProfileComplete = userData.GetProperty<bool>("ProfileComplete");
            if (!boolProfileComplete)
            {
                // Call our FormFlow by calling MakeRootDialog
                await Conversation.SendAsync(activity, MakeRootDialog);
            }
            else
            {
                //Check if Personalized Greeting is done
                if (userData.GetProperty<bool>("Greet"))
                {
                    //this doesnt work since their should be only one Conversation.SendAsync.

                    //ConnectorClient connector = new ConnectorClient(new Uri(activity.ServiceUrl));
                    //await Conversation.SendAsync(activity, () => new QnADialog());
                }
                else
                {
                    // Get the saved profile values
                    var Name = userData.GetProperty<string>("Name");
                    userData.SetProperty<bool>("Greet", true);
                    sc.BotState.SetPrivateConversationData(activity.ChannelId, activity.Conversation.Id,activity.From.Id, userData);
                    ConnectorClient connector = new ConnectorClient(new Uri(activity.ServiceUrl));
                    Activity replyMessage = activity.CreateReply(string.Format("Hi {0}!", Name));
                    await connector.Conversations.ReplyToActivityAsync(replyMessage);
                }
            }
            #endregion
        }
        else
        {
            HandleSystemMessage(activity);
        }
        var response = Request.CreateResponse(HttpStatusCode.OK);
        return response;
    }
4

1 回答 1

3

这是使用您的示例的示例。我做了一些小改动,但没有什么是你看不到的。一点解释:

控制器:我清理了它。它实际上应该只调用根对话框。这干净多了。

RootDialog:将首先调用表单。如果表单成功,它将继续到 QnA 对话框。

ProfileForm:仅删除了 FormCompleted 布尔值。没有必要。

QnADialog:将使用填写的名称启动对话框并提出问题。我保留了默认代码以获得一些反馈。

希望这可以帮助

控制器

public async Task<HttpResponseMessage> Post([FromBody]Activity activity)
{
    if (activity.Type == ActivityTypes.Message)
    {
        await Conversation.SendAsync(activity, () => new Dialogs.RootDialog());
    }
    else
    {
        HandleSystemMessage(activity);
    }
    var response = Request.CreateResponse(HttpStatusCode.OK);
    return response;
}

根对话框

[Serializable]
public class RootDialog : IDialog<object>
{
    public Task StartAsync(IDialogContext context)
    {
        context.Wait(MessageReceivedAsync);
        return Task.CompletedTask;
    }

    private async Task ResumeAfterForm(IDialogContext context, IAwaitable<ProfileForm> result)
    {
        if (context.PrivateConversationData.TryGetValue("Name", out string name))
        {
            context.Call(new QnADialog(), MessageReceivedAsync);
        }
        else
        {
            await context.PostAsync("Something went wrong.");
            context.Wait(MessageReceivedAsync);
        }
    }

    private async Task MessageReceivedAsync(IDialogContext context, IAwaitable<object> result)
    {
        var form = new FormDialog<ProfileForm>(new ProfileForm(), ProfileForm.BuildForm, FormOptions.PromptInStart);
        context.Call(form, ResumeAfterForm);
    }
}

个人资料表格

[Serializable]
public class ProfileForm
{
    // these are the fields that will hold the data
    // we will gather with the form
    [Prompt("What is your name? {||}")]
    public string Name;

    // This method 'builds' the form 
    // This method will be called by code we will place
    // in the MakeRootDialog method of the MessagesControlller.cs file
    public static IForm<ProfileForm> BuildForm()
    {
        return new FormBuilder<ProfileForm>()
                .Message("Welcome to the profile bot!")
                .OnCompletion(async (context, profileForm) =>
                {
                    // Set BotUserData
                    //context.PrivateConversationData.SetValue<bool>("ProfileComplete", true);
                    context.PrivateConversationData.SetValue<string>("Name", profileForm.Name);
                    // Tell the user that the form is complete
                    await context.PostAsync("Your profile is complete.");
                })
                .Build();
    }
}

QnA对话框

[Serializable]
public class QnADialog : IDialog<object>
{
    public async Task StartAsync(IDialogContext context)
    {
        context.PrivateConversationData.TryGetValue("Name", out string name);
        await context.PostAsync($"Hello {name}. The QnA Dialog was started. Ask a question.");
        context.Wait(MessageReceivedAsync);

    }

    private async Task MessageReceivedAsync(IDialogContext context, IAwaitable<object> result)
    {
        var activity = await result as Activity;

        // calculate something for us to return
        int length = (activity.Text ?? string.Empty).Length;

        // return our reply to the user
        await context.PostAsync($"You sent {activity.Text} which was {length} characters");

        context.Wait(MessageReceivedAsync);
    }
}
于 2017-04-27T09:19:26.743 回答