我正在尝试打开一个松弛模式。以下是我的 JSON。字段放在附件下时不传递值。我在该字段旁边收到错误消息。我做错什么了吗?当我把它放在输入类型块中时,同样的事情。下面是我使用 Slack Block Kit Builder 构建的 JSON 代码。我也添加了 action_id
{
"type": "modal",
"title": {
"type": "plain_text",
"text": "My App",
"emoji": true
},
"submit": {
"type": "plain_text",
"text": "Submit",
"emoji": true
},
"close": {
"type": "plain_text",
"text": "Cancel",
"emoji": true
},
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "To"
},
"accessory": {
"type": "static_select",
"action_id": "to_time",
"placeholder": {
"type": "plain_text",
"text": "Select an item",
"emoji": true
},
"options": [
{
"text": {
"type": "plain_text",
"text": "8 AM",
"emoji": true
},
"value": "8"
},
{
"text": {
"type": "plain_text",
"text": "9 AM",
"emoji": true
},
"value": "9"
},
{
"text": {
"type": "plain_text",
"text": "10 AM",
"emoji": true
},
"value": "10"
},
{
"text": {
"type": "plain_text",
"text": "11 AM",
"emoji": true
},
"value": "11"
},
{
"text": {
"type": "plain_text",
"text": "12 PM",
"emoji": true
},
"value": "12"
},
{
"text": {
"type": "plain_text",
"text": "1 PM",
"emoji": true
},
"value": "1"
},
{
"text": {
"type": "plain_text",
"text": "2 PM",
"emoji": true
},
"value": "2"
},
{
"text": {
"type": "plain_text",
"text": "3 PM",
"emoji": true
},
"value": "3"
},
{
"text": {
"type": "plain_text",
"text": "4 PM",
"emoji": true
},
"value": "4"
},
{
"text": {
"type": "plain_text",
"text": "5 PM",
"emoji": true
},
"value": "5"
}
]
}
}
]
}
值未通过