const discord = require('discord.js'); // Import the discord.js module
var client = new discord.Client(); // Create an instance of a Discord client
我在顶部声明了discord
,但继续出现引用错误,我是否遗漏了一些非常明显的内容?
// Send the user's avatar URL
if (message.content.startsWith(config.prefix + "avatar")) {
const user = message.mentions.users.first() || message.author;
const avatarEmbed = new Discord.RichEmbed()
答案 0 :(得分:0)
Discord is not defined
,
在程序的任何位置都没有声明Discord(大写D),
const discord = require('discord.js'); // Import the discord.js module
在这里,您将“ discord”声明为discord.js模块,因此您应该使用“ discord”而不是“ Discord”。