python 如何在www.example.com中了解embed的正文和作者discord.py?

sgtfey8w  于 2022-12-02  发布在  Python
关注(0)|答案(2)|浏览(95)

我试图找到一种可以识别嵌入消息文本和作者的方法,但一直没有找到。那么有什么方法可以做到这一点呢?
我在网上搜索了一下,可惜没有找到。

ycl3bljg

ycl3bljg1#

看看这里的文档
如果你有一个Embed对象,obj只需要用obj.author来得到作者。我假设你指的是标题,可以用obj.title来访问。

djmepvbi

djmepvbi2#

假设您有一个Message对象,
一、获取消息作者:

author = message.author

要从邮件中获取嵌入信息,请执行以下操作:

embed = discord.Embed.from_data(message.embeds[0])  # gets embed from message

在获取嵌入文本之前,我们首先查看discord.Embed对象的属性,它有属性titledescription [source]。
因此:

embedTitle = embed.title  # get title
embedDescription = embed.description  # get description

相关问题