slack 块文本输入在移动应用程序(android)中不起作用

问题描述 投票:0回答:1

slack 块 text_input 在移动应用程序中不起作用(仅限 Android)。 // IOS 可以工作了!

我使用块元素将消息发送到松弛通道。 它在桌面松弛中运行良好。 我可以将文本插入到text_input。

但文本未插入到 slack 移动应用程序的 text_input 中(仅限 Android)。

如何解决这个问题?

[
    {
        "type": "input",
        "element": {
            "type": "plain_text_input",
            "action_id": "plain_text_input-action"
        },
        "label": {
            "type": "plain_text",
            "text": ":slightly_smiling_face: insert your E-mail",
            "emoji": true
        }
    },
    {
        "type": "actions",
        "block_id": "block_id_Sys_airp",
        "elements": [
            {
                "type": "button",
                "text": {
                    "type": "plain_text",
                    "text": "Send"
                },
                "action_id": "approve_request",
                "value": "btn_Sys_airp_OK"
            }
        ]
    }
]
slack slack-api slack-block-kit
1个回答
0
投票

我向Slack询问了我的问题,并确认这是一个错误。 他们表示会尽快解决问题。

© www.soinside.com 2019 - 2024. All rights reserved.