問題:
- 応答ダイアログにカードを添付する次のコードは、ほとんどがボットのサンプルから取られていますが、使用した表示ロジックの重要な部分の応答ダイアログにカードを表示しません。
LUIS Intent タスク内でアタッチを行うのに問題があります。
ゴール
- LUIS が認識しない質問をユーザーに尋ね、コードが認識されていないものを処理する LUIS インテント タスクにジャンプしたら、ヘルプ カードで応答します。まだカードを利用しているヘルプウィンドウの他の構造はありますか?
コード
カードを表示する場所
[LuisIntent("None")]
public async Task NoneHandler(IDialogContext context, LuisResult result) {
string worriedFace = "\U0001F61F";
string smilingFace = "\U0001F642";
await context.PostAsync("I'm sorry, I didn't get that " + worriedFace + '.');
await context.PostAsync("Here are some things I know how to talk about!" + smilingFace);
var message = context.MakeMessage();
var attachment = new CardDialog().ReceiptCard();
message.Attachments.Add(attachment);
await context.PostAsync(message);
}
表示しようとしている、作成した View オブジェクトのカード クラス。
namespace LUISBankingBot.Views
{
using System.Collections.Generic;
using Microsoft.Bot.Connector;
using Microsoft.Bot.Builder.Dialogs;
using System;
using System.Threading.Tasks;
public class CardDialog : IDialog<object>
{
public Task StartAsync(IDialogContext context)
{
throw new NotImplementedException();
}
public Attachment ReceiptCard()
{
var receiptCard = new ReceiptCard
{
Title = "John Doe",
Facts = new List<Fact> { new Fact("Order Number", "1234"), new Fact("Payment Method", "VISA 5555-****") },
Items = new List<ReceiptItem>
{
new ReceiptItem("Data Transfer", price: "$ 38.45", quantity: "368", image: new CardImage(url: "https://github.com/amido/azure-vector-icons/raw/master/renders/traffic-manager.png")),
new ReceiptItem("App Service", price: "$ 45.00", quantity: "720", image: new CardImage(url: "https://github.com/amido/azure-vector-icons/raw/master/renders/cloud-service.png")),
},
Tax = "$ 7.50",
Total = "$ 90.95",
Buttons = new List<CardAction>
{
new CardAction(
ActionTypes.OpenUrl,
"More information",
"https://account.windowsazure.com/content/6.10.1.38-.8225.160809-1618/aux-pre/images/offer-icon-freetrial.png",
"https://azure.microsoft.com/en-us/pricing/")
}
};
return receiptCard.ToAttachment();
}
}
}