0

问题是我写了一些代码,我认为是正确的,但显然它是不正确的,所以我想问你们,因为你们可以知道的更好

@bot.event
async def on_message(message):

    if message.author == bot.user:
        print(message.author,message.content)
        return


    print(message.author,message.content)

    channel = bot.get_channel(576705173766930433)
    await channel.send('{0.author}: {0.message}'.format(message))

当我发送消息时,控制台会反对:忽略 on_message 中的异常

Traceback (most recent call last):
  File "C:\Users\User\AppData\Local\Programs\Python\Python36\lib\site-packages\discord\client.py", line 255, in _run_event
    await coro(*args, **kwargs)
  File "C:\Users\User\Desktop\Servant_Of_Paschen.py", line 38, in on_message
    await channel.send('{0.author}: {0.message}'.format(message))
AttributeError: 'str' object has no attribute 'author'
4

1 回答 1

0

对不起伙计们我一个人发现的

await channel.send('{}: {}'.format(message.author, message.content))

是我想我想做的

于 2019-05-11T15:59:56.583 回答