使用 Discord.js 版本 14 时,您可能会遇到 message.content 属性为当用户发送消息时为空。出现这种情况是因为未启用消息内容意图或未包含正确的网关意图位。
解决方案:
启用消息内容意图:
添加GatewayIntentBits.MessageContent 枚举:
在您的 Discord.js 代码中,修改意图数组,如下所示:
intents: [ GatewayIntentBits.DirectMessages, GatewayIntentBits.Guilds, GatewayIntentBits.GuildBans, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent, ],
使用“messageCreate”事件:
确保您使用的是 messageCreate 事件,而不是 message 事件来处理消息:
bot.on('messageCreate', async (message) => { // Your code here });
通过启用消息内容意图并添加正确的网关意图位,您将恢复 message.content 属性实际的消息文本。
以上是为什么我的 Discord.js v14 Bot 中的'message.content”为空?的详细内容。更多信息请关注PHP中文网其他相关文章!