新答案
Discord.py 2.0 允许使用按钮和下拉菜单,尽管它不支持斜杠命令。请改用 Discord.py 2.0,但如果您需要斜杠命令,请查看 discord_slash。
升级到 Discord.py 2.0:
窗户:
pip install -U git+https://github.com/Rapptz/discord.py
MacOS 和 Linux:
pip3 install -U git+https://github.com/Rapptz/discord.py
旧答案:
(此答案已过时。)
到目前为止,您可以获得一个名为 discord_components 的库来使用按钮。
要安装这个库,请使用pip install --upgrade discord-components (有时命令是pip3 install --upgrade discord-components)。
要导入 Discord 组件按钮,请使用
from discord_components import DiscordComponents, Button, ButtonStyle, InteractionType
然后只需将此代码添加到机器人的on_ready():
DiscordComponents(bot, change_discord_methods=True)
(确保将bot 替换为您的机器人名称,与您用于@something.command() 的名称相同)
要为消息添加按钮,请执行以下操作:
await ctx.send(type=InteractionType.ChannelMessageWithSource, content="Message Here", components=[Button(style=ButtonStyle.URL, label="Example Invite Button", url="https://google.com"), Button(style=ButtonStyle.blue, label="Default Button", custom_id="button")])
(需要留言)
要在单击按钮时执行某些操作,您可以执行以下操作:
@bot.event
async def on_button_click(interaction):
if interaction.component.label.startswith("Default Button"):
await interaction.respond(type=InteractionType.ChannelMessageWithSource, content='Button Clicked')
这种方法甚至可以在重新启动后继续存在!
如果您需要,我为您整理了一个示例:
import discord
from discord.ext import commands
from discord_components import DiscordComponents, Button, ButtonStyle, InteractionType
bot = commands.Bot(command_prefix=prefix, description="Desc", help_command=None)
@bot.event
async def on_ready():
DiscordComponents(bot, change_discord_methods=True)
await bot.change_presence(activity=discord.Game(name=f"{prefix}help"))
print("Bot has successfully logged in as: {}".format(bot.user))
print("Bot ID: {}\n".format(bot.user.id))
@bot.command()
async def button(ctx):
await ctx.send(type=InteractionType.ChannelMessageWithSource, content="Message Here", components=[Button(style=ButtonStyle.URL, label="Example Invite Button", url="https://google.com"), Button(style=ButtonStyle.blue, label="Default Button", custom_id="button")])
bot.run("token")
希望对您有所帮助!
提示:如果您希望按钮在一行中,请使用 [[]] 而不是仅 [] 例如:[[btn1, btn2],[btn3, btn4]] 将导致:
[btn 1][btn 2]
[btn 3][btn 4]
额外提示:您也可以将变量设置为按钮然后发送变量