如何在嵌入的消息中也包含正常内容?
How can I also include normal content in an embedded message?
如何在嵌入的消息中也包含正常内容,如下图所示?
例如,这是一条普通的嵌入消息。
embed = discord.Embed(title="example", description="embed content")
await ctx.reply(embed=embed)
只需像这样使用关键字参数 content
:
content = "text content"
embed = discord.Embed(title="example", description="embed content")
await ctx.reply(content=content, embed=embed)
您可以通过在 reply()
参数中指定内容来向消息和嵌入添加内容。
from discord import Embed
content = "content"
embed = Embed(title="example", description="embed content")
await ctx.reply(content=content, embed=embed)
如何在嵌入的消息中也包含正常内容,如下图所示?
例如,这是一条普通的嵌入消息。
embed = discord.Embed(title="example", description="embed content")
await ctx.reply(embed=embed)
只需像这样使用关键字参数 content
:
content = "text content"
embed = discord.Embed(title="example", description="embed content")
await ctx.reply(content=content, embed=embed)
您可以通过在 reply()
参数中指定内容来向消息和嵌入添加内容。
from discord import Embed
content = "content"
embed = Embed(title="example", description="embed content")
await ctx.reply(content=content, embed=embed)