Discord.py 按钮 - 向成员添加角色返回 NoneType 错误

时间:2021-06-13 19:39:09

标签: python discord.py

我正在尝试使用带有 discord.py 模块的 discord-components 包制作按钮。

我有以下代码:

@client.command()
async def button(ctx):
    await ctx.channel.send(
        "This is a button test",
        components = [
            Button(style=ButtonStyle.blue, label="Button 1")
        ]
    )


    res = await client.wait_for("button_click")
    if res.channel == ctx.channel:
        member = await res.guild.get_member(res.user.id)
        await member.add_role(853692936465940501)
        await res.respond(
            type=InteractionType.ChannelMessageWithSource,
            content=f"{res.component.label} has been clicked! This is button 1"
        )

但我似乎遇到了问题,出现错误

discord.ext.commands.errors.CommandInvokeError: Command raised an exception: TypeError: object NoneType can't be used in 'await' expression

为什么 guild.get_member 会返回一个 NoneType? 有没有人可能有一些关于如何使用 discord.py 按钮实现角色更改的示例代码?因为我似乎无法让它发挥作用

谢谢:)

1 个答案:

答案 0 :(得分:1)

首先执行此操作,确保您也导入了 Discord。

intents = discord.Intents.default()
intents.members = True
client = discord.Client(intents=intents)

然后你可以简单地使用这个获取用户: user = client.get_user(INT)