Slack 让您可以使用块工具包构建器非常轻松地构建 UI,包括添加复选框:如何使所有复选框默认选中(使用 JS)?当用户打开应用程序主页时,是否有甚至选择 1 个复选框?如果我能做一个,其余的应该很容易。
{
"type": "home",
"blocks": [
{
"type": "input",
"element": {
"type": "checkboxes",
"options": [
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
"emoji": true
},
"value": "value-0"
},
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
"emoji": true
},
"value": "value-1"
}
],
"action_id": "checkboxes-action"
},
"label": {
"type": "plain_text",
"text": "Label",
"emoji": true
}
}
]
}