无法发送空消息 - Discord.JS v13

Posted

技术标签:

【中文标题】无法发送空消息 - Discord.JS v13【英文标题】:Cannot send empty message - Discord.JS v13 【发布时间】:2022-01-20 20:45:48 【问题描述】:

错误:DiscordAPIError: Cannot send an empty message 代码:

if(message.content == 'a!up')
    
        const AllowedupMessage = new Discord.MessageEmbed()
        .setAuthor(process.env.AllowedAuthor)
        .setDescription(process.env.AllowedDescription)
        .setFooter(process.env.VNetworkFooter)
        .setColor(process.env.AllowedColor);
        message.channel.send( embeds: [AllowedupMessage] )
    

我不知道如何解决这个愚蠢的错误。感谢您的帮助:)

【问题讨论】:

你使用的是什么版本的 discord.js? 【参考方案1】:

取决于您拥有的 Discord.js 版本

但是从你的代码来看,我猜是 v13

Discord.js Guide Updating from v12 to v13

发送消息、嵌入、文件等的示例。从 v12 更新到 v13

- channel.send(embed);
+ channel.send( embeds: [embed, embed2] );

- channel.send('Hello!',  embed );
+ channel.send( content: 'Hello!', embeds: [embed, embed2] );

- interaction.reply('Hello!',  ephemeral: true );
+ interaction.reply( content: 'Hello!', ephemeral: true );

【讨论】:

以上是关于无法发送空消息 - Discord.JS v13的主要内容,如果未能解决你的问题,请参考以下文章

Discord.js 代码无法发送嵌入消息 [关闭]

Discord.js 无法向该用户发送消息

Discord.js 机器人无法向特定频道发送消息

无法将 DM 发送到消息到 DB discord.js 中的存储用户

无法读取 discord.js 中未定义的属性“发送”

使用 discord.js 从不同服务器向多个频道 ID 发送消息