首字母缩略词表单示例
首字母缩略词表单示例是一个自适应卡输入表单,旨在收集首字母缩略词,并将其存储在 Dataverse 中。 由于正在进行数据收集,可能会从任何位置查询这些首字母缩略词。
输入/输出和注释
动态令牌名称 | 占位符文本 | 注释: |
---|---|---|
{acAcronym} | 输入首字母缩略词 | 响应输出 |
{acDefinition} | 输入上述首字母缩略词的定义 | 响应输出 |
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Acronym Logger",
"id": "Title",
"spacing": "Medium",
"horizontalAlignment": "Center",
"size": "ExtraLarge",
"weight": "Bolder",
"color": "Accent"
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Acronym",
"wrap": true,
"spacing": "Medium"
},
{
"type": "Input.Text",
"id": "acAcronym",
"placeholder": "Enter the abbreviation for the acronym"
},
{
"type": "TextBlock",
"text": "Definition",
"wrap": true
},
{
"type": "Input.Text",
"placeholder": "Enter a definition of the acronym above",
"id": "acDefinition",
"isMultiline": true
}
]
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit", "id": "btnSubmit"
}
]
}