영어로 읽기

다음을 통해 공유


머리글자어 양식 샘플

머리글자어 양식 샘플은 머리글자어를 수집해 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"
        }
    ]
}