【发布时间】:2022-07-27 07:19:16
【问题描述】:
我无法导入不和谐意图 我有 discord.js 版本 13.6.0
这是我导入东西的开始
const { Client, Intents } = require('discord.js');
这是我得到错误的地方
const bot = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGES
]});
错误是:
TypeError: Cannot read properties of undefined (reading 'FLAGS')
【问题讨论】:
-
告诉我们什么错误
-
Intents.FLAGS.GUILDS, ^ TypeError: Cannot read properties of undefined (reading 'FLAGS')
标签: javascript discord.js