您需要启用所需的意图和部分,以便能够收听直接消息。正如您已经添加的那样
DIRECT_MESSAGES
,您一定错过了
CHANNEL
partial
. DMs需要它。虽然服务器通道始终可用,但DM通道可以取消缓存,这就是为什么您需要这样添加它:
const client = new discord.Client({
intents: ["GUILDS", "GUILD_MESSAGES", "DIRECT_MESSAGES"],
partials: ['CHANNEL']
});
channel.type
忽略任何非DM的内容:
client.on('messageCreate', (message) => {
if (message.author.bot || message.channel.type !== 'DM') return;
// handle the command sent in a DM
});