AttributeError: 'int' object has no attribute 'send'

AttributeError: 'int' object has no attribute 'send'

不确定问题出在哪里,但非常感谢您的帮助!

@client.event
async def on_message(message):
    channel = CHANNEL_ID
    isbot = message.author.bot
    if isbot:
        pass
    else:
        await channel.send(message.content)

CHANNEL_ID已经在我的tokens.py

上定义了

每当我在机器人关注的频道中发送消息时,就会出现此问题。

由于您将 channel 分配给 CHANNEL_ID,因此 channelCHANNEL_ID 的数据类型相同。由于 CHANNEL_ID 可能是一个 int,您可以使用各种可用的函数和方法来获取 TextChannel 对象以使用 send() 方法。


使用discord.utils.get()函数:

@client.event
async def on_message(message):
    channel = discord.utils.get(message.guild.channels, id=CHANNEL_ID)
    isbot = message.author.bot
    if isbot:
        pass
    else:
        await channel.send(message.content)

使用 Client.fetch_channel() method:

@client.event
async def on_message(message):
    channel = await client.fetch_channel(CHANNEL_ID)
    isbot = message.author.bot
    if isbot:
        pass
    else:
        await channel.send(message.content)

使用 Client.get_channel() method:

@client.event
async def on_message(message):
    channel = await client.get_channel(CHANNEL_ID)
    isbot = message.author.bot
    if isbot:
        pass
    else:
        await channel.send(message.content)