在 discord_components 中单击按钮时调用 python 函数 (python)

Call a python function on button click in discord_components (python)

我正在 discord.py 中制作一个机器人,我想在有人按下按钮时调用代码中的一个函数。我查看了 discord_components(用于按钮和 select 菜单的库)的文档,但要么我很愚蠢,要么文档不好。我也用谷歌搜索但没有找到任何东西。

那么是否可以 运行 交互事件上的函数?

@bot.event
async def on_button_click(interaction):
    your_func()

你可以顺其自然。注意不要忘记发送回调。 这是不和谐组件 github 上事件示例的 link:examples