Bots 在BOT emulator中显示自适应卡上的注释

Bots 在BOT emulator中显示自适应卡上的注释,bots,adaptive-cards,Bots,Adaptive Cards,我正在BOT emulator中使用自适应卡显示一些数据,我想在其中添加一个注释部分。我尝试了以下方法: { "type": "Action.ShowCard", "title": "Comment", "card": { "type"

我正在BOT emulator中使用自适应卡显示一些数据,我想在其中添加一个注释部分。我尝试了以下方法:

{
                                "type": "Action.ShowCard",
                                "title": "Comment",
                                "card": {
                                    "type": "AdaptiveCard",
                                    "body": [
                                        {
                                            "type": "Input.Text",
                                            "id": "test",
                                            "isMultiline": true,
                                            "placeholder": "Enter your comment",

                                        }
                                    ],
                                    "actions": [
                                        {
                                            "type": "Action.Submit",
                                            "id":"submit",
                                            "title": "OK",

                                            "data":
                                            {
                                                "test":""
                                            }

                                        }
                                    ],
                                    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json"
                                }
                            }

                        ]

但单击“确定”操作时没有得到任何输出。我们如何才能做到这一点?

有任何解决方案吗?当您在“注释”部分键入内容并单击“确定”时,您希望得到什么输出?你能添加一张显示在模拟器上的卡的屏幕截图吗?