【问题标题】:How can I read button action from an Adaptive Card in node.js?如何从 node.js 中的自适应卡中读取按钮操作?
【发布时间】:2017-12-09 16:28:34
【问题描述】:

如果我有如下自适应卡:

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 中找不到任何示例。

非常感谢

【问题讨论】:

    标签: node.js botframework adaptive-cards


    【解决方案1】:

    你需要检查session.message.value是否存在

    if (session.message && session.message.value) {
     // process your card's submit action
    }
    

    查看以下Adaptive Card sample,了解如何处理提交操作。

    【讨论】:

    • 哦不! - 链接给出 404
    猜你喜欢
    • 2023-02-04
    • 2017-11-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-11-09
    • 2020-08-16
    • 2021-11-28
    • 2021-04-12
    相关资源
    最近更新 更多