如何像下圖一樣在嵌入訊息中包含正常內容?

例如,這是一條普通的嵌入訊息。
embed = discord.Embed(title="example", description="embed content")
await ctx.reply(embed=embed)
uj5u.com熱心網友回復:
reply()您可以通過在引數中指定內容來將內容添加到訊息以及嵌入中。
from discord import Embed
content = "content"
embed = Embed(title="example", description="embed content")
await ctx.reply(content=content, embed=embed)
uj5u.com熱心網友回復:
只需對內容await ctx.reply(content='content', embed=embed) 檔案使用關鍵字引數
轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/483169.html
