如果我有一张自适应卡,如下所示:
var msg = new builder.Message(session)
.addAttachment({
contentType: "application/vnd.microsoft.card.adaptive",
content: {
type: "AdaptiveCard",
speak: "<s>Your meeting about \"Adaptive Card design session\"<break strength='weak'/> is starting at 12:30pm</s><s>Do you want to snooze <break strength='weak'/> or do you want to send a late notification to the attendees?</s>",
body: [
{
"type": "TextBlock",
"text": "Adaptive Card design session",
"size": "large",
"weight": "bolder"
},
{
"type": "TextBlock",
"text": "Conf Room 112/3377 (10)"
},
{
"type": "TextBlock",
"text": "12:30 PM - 1:30 PM"
},
{
"type": "TextBlock",
"text": "Snooze for"
},
{
"type": "Input.ChoiceSet",
"id": "snooze",
"style":"compact",
"choices": [
{
"title": "5 minutes",
"value": "5",
"isSelected": true
},
{
"title": "15 minutes",
"value": "15"
},
{
"title": "30 minutes",
"value": "30"
}
]
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Snooze"
},
{
"type": "Action.Submit",
"title": "I'll be late"
}
]
}
});
如何在对话中呈现它,以便机器人等待用户单击其中一个提交按钮?
如何读取已按下的按钮?
我在 Node.js 中找不到任何示例来执行此操作。
非常感谢
您需要检查session.message.value
是否存在
if (session.message && session.message.value) {
// process your card's submit action
}
看看下面的Adaptive Card sample了解如何处理提交操作。
我是一名优秀的程序员,十分优秀!