简体   繁体   English

你如何在 discord.js 中定义用户

[英]How do you define user in discord.js

I am trying to run some test events and I tried using the one discord.js posted on their website:我正在尝试运行一些测试事件,并尝试使用他们网站上发布的一个 discord.js:

module.exports = {
    name: 'ready',
    once: true,
    execute(client) {
        console.log(`Ready! Logged in as ${client.user.tag}`);
    },
};

I tried googling how to define a user but it only led to specific answers for that specific scenerio.我尝试使用谷歌搜索如何定义用户,但它只能为该特定场景提供特定答案。

Here is my code for the event handler:这是我的事件处理程序代码:

const eventFiles = fs.readdirSync('./events').filter(file => file.endsWith('.js'));
const fs = require('fs');
for (const file of eventFiles) {
    const event = require(`./events/${file}`);
    if (event.once) {
        client.once(event.name, (...args) => event.execute(...args));
    } else {
        client.on(event.name, (...args) => event.execute(...args));
    }
}

Here is my error:这是我的错误:

/Users/me/RPG Bot/events/ready.js:5
        console.log(`Ready! Logged in as ${client.user.id}`);
                                                  ^

TypeError: Cannot read property 'user' of undefined
    at Object.execute (/Users/dkaplan/RPG Bot/events/ready.js:5:45)
    at Client.<anonymous> (/Users/dkaplan/RPG Bot/bot.js:40:46)

Thank you to anyone that can help.感谢任何可以提供帮助的人。

It doesnt look like you are ever declaring client .看起来您从未声明client

As per the discord.js documentation:根据 discord.js 文档:

const { Client, Intents } = require('discord.js');
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM