【发布时间】:2019-04-03 20:13:27
【问题描述】:
如何在一封邮件中发送多个嵌入内容?像这样发送多个:
await message.channel.send({embed: { //Send a new embed
title: "Embed 1",
fields: [{
name: "Description",
value: "The Description"
}]
}},
embed: { //Send a new embed
title: "Embed 2",
fields: [{
name: "Description",
value: "The Description"
}]
}});
给出以下输出:
[object Object]
Embed 2
Description: The Description
我找不到任何关于发送多个嵌入的文档,discord.js 文件中提到了它,发送了一个嵌入列表。虽然我已经尝试过,但它也不起作用。
【问题讨论】:
标签: node.js discord discord.js