如何修复错误“未捕获的类型错误:无法读取未定义的属性‘id’”?

时间:2021-07-01 04:51:05

标签: javascript node.js discord

所以我正在制作一个selfbot(bc为什么不)并且我完成了第一个命令。 它应该工作,但它没有 代码如下:

const Discord = require("discord.js");
const fs = require("fs");
const ConsoleTitle = require("node-bash-title");
const bot = new Discord.Client({disableEveryone: true});
ConsoleTitle("Slefx")
bot.on("ready", async () => {
    console.log("Ready!");
    setTimeout( () => {
        console.log("Ready to go!");
    }, 2000)
})

bot.on("message", async () => {
    if(message.content === "!embed sus" ) return message.channel.send("https://embed.rauf.workers.dev/?author=Sussy&title=Bakka%2520B%29&description=Fuck%2520you%2520B%29&image=https%253A%252F%252Fmedia.sketchfab.com%252Fmodels%252F230ec756288e444c8e07f486ef9e8786%252Fthumbnails%252Feb28075b3cbe419bab000bd898b6f6ef%252F9d87472aded94922929162557fcec2d6.jpeg&redirect=https%253A%252F%252Ftherickroll.com");
})

bot.login("hahaucanloginwithmyaccountbecauseireplacedmycookiewiththis")

这是错误: Uncaught TypeError: Cannot read property 'id' of undefined

如果你看到这个,祝你有美好的一天:D。

1 个答案:

答案 0 :(得分:0)

您可能需要检查错误的来源,因为您的代码没有任何“id”。要是能查一下日志就更好了。