首页 > 解决方案 > Discord.py 按钮 - 向成员添加角色返回 NoneType 错误

问题描述

我正在尝试使用带有 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 按钮实现角色更改的示例代码?因为我似乎无法让它工作

谢谢 :)

标签: pythondiscord.py

解决方案


首先,确保您也导入了 Discord。

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

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


推荐阅读