问题是我写了一些代码,我认为是正确的,但显然它是不正确的,所以我想问你们,因为你们可以知道的更好
@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'