Discord bot 客户端未定义

Posted

技术标签:

【中文标题】Discord bot 客户端未定义【英文标题】:Discord bot Client not defined 【发布时间】:2022-01-13 01:46:29 【问题描述】:

我正在尝试制作一个不和谐的机器人,但我遇到了一个问题:

ReferenceError: Client is not defined
at Object.<anonymous> (C:\Users\Arya\Desktop\Arya\Discord\bot.js:3:16)
at Module._compile (node:internal/modules/cjs/loader:1101:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
at node:internal/main/run_main_module:17:47

代码是

require("dotenv").config();
const  Cient, Intents  = require("discord.js");
const client = new Client(
intent: [
    Intents.FLAGS.GUILDS,
    Intents.FLAGS.GUILD_MESSAGES
 ]
);

bot.login(process.env.TOKEN);

【问题讨论】:

这是const Client 不是const Cient,它是client.login,不是bot.login,它是intents: 不是intent: 。确保你改正你的错别字 【参考方案1】:

简单的语法错误,这可行:

require("dotenv").config();
const  Client, Intents  = require("discord.js");
const client = new Client(
intents: [
    Intents.FLAGS.GUILDS,
    Intents.FLAGS.GUILD_MESSAGES
]
);

client.login(process.env.TOKEN);

您在底部的登录名让我混淆了 bot 变量的位置,但如果我的代码不起作用,您可以将其更改回来。否则你只需要在意图中添加一个 s。

【讨论】:

错字并不总是 SyntaxErrors,在这种情况下,它是一个 ReferenceError 代替【参考方案2】: 您在代码的第二行定义 Cient 而不是 Client 客户端选项必须指定intents: [ YOUR_INTENTS_HERE ] 而不是intent 最后一行必须是client.login 而不是bot.login

【讨论】:

以上是关于Discord bot 客户端未定义的主要内容,如果未能解决你的问题,请参考以下文章

无法在 Member.set [as avatar] 处设置未定义的属性“头像”-Discord Bot

discord.py bot 找到要删除的频道消息,但显示其客户端 ID 与我的相同

Minecraft 服务器客户端通过 Discord Bot

Discord Python代码中的命令未找到错误

如何使用 discord.js 从 discord bot 向特定用户发送消息

Discord.js:TypeError:无法读取未定义的属性“get”