2017-09-01 84 views

回答

2

如果你看看这个例子:http://adaptivecards.io/visualizer/?card=/samples/cards/Input%20Form.json

您将看到的格式是一个基本的数字:

{ 
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", 
    "type": "AdaptiveCard", 
    "version": "0.5", 
    "body": [ 
    { 
     "type": "ColumnSet", 
     "columns": [ 
     { 
      "type": "Column", 
      "size": 2, 
      "items": [ 
      { 
       "type": "TextBlock", 
       "text": "Tell us about yourself...", 
       "weight": "bolder", 
       "size": "large" 
      }, 
      { 
       "type": "TextBlock", 
       "text": "We just need a few more details to get you booked for the trip of a lifetime!", 
       "isSubtle": true, 
       "wrap": true 
      }, 
      { 
       "type": "TextBlock", 
       "text": "Don't worry, we'll never share or sell your information.", 
       "isSubtle": true, 
       "wrap": true, 
       "size": "small" 
      }, 
      { 
       "type": "TextBlock", 
       "text": "Your name", 
       "wrap": true 
      }, 
      { 
       "type": "Input.Text", 
       "id": "myName", 
       "placeholder": "Last, First" 
      }, 
      { 
       "type": "TextBlock", 
       "text": "Your email", 
       "wrap": true 
      }, 
      { 
       "type": "Input.Text", 
       "id": "myEmail", 
       "placeholder": "[email protected]", 
       "style": "email" 
      }, 
      { 
       "type": "TextBlock", 
       "text": "Phone Number" 
      }, 
      { 
       "type": "Input.Text", 
       "id": "myTel", 
       "placeholder": "xxx.xxx.xxxx", 
       "style": "tel" 
      } 
      ] 
     }, 
     { 
      "type": "Column", 
      "size": 1, 
      "items": [ 
      { 
       "type": "Image", 
       "url": "https://upload.wikimedia.org/wikipedia/commons/b/b2/Diver_Silhouette%2C_Great_Barrier_Reef.jpg", 
       "size": "auto" 
      } 
      ] 
     } 
     ] 
    } 
    ], 
    "actions": [ 
    { 
     "type": "Action.Submit", 
     "title": "Submit" 
    } 
    ] 
} 

它的工作有点像引导;这里你的第一列将获得总宽度的2/3 = 2 /(2 + 1),第二列将是1/3(1 /(2 + 1))。

您可以在提供测试仪操纵值

+0

很好,谢谢!这对我行得通。 – psobczak

相关问题