【发布时间】:2020-11-06 19:18:41
【问题描述】:
我有一张自适应卡片,它显示选择集中的管道列表,我想使用所选管道的值作为选择提交按钮时向团队发送的消息。如何访问 Input.Choiceset 的 id 值?
这是提交操作的 sn-p -
"actions": [
{
"type": "Action.Submit",
"title": "Execute",
"data": {
"msteams": {
"type": "messageBack",
"text": "" (Choiceset value here)
}
}
}
]
这是选择集 sn-p -
{
"type": "Input.ChoiceSet",
"id": "pipelineSelect",
"choices": "${list}",
"placeholder": "pipelines"
}
【问题讨论】:
标签: botframework microsoft-teams adaptive-cards