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

时间:2020-10-30 21:51:48

标签: javascript discord discord.js

运行节点时,会弹出此错误:TypeError: Cannot read property 'find' of undefined

错误在这里:

const cmd = client.command.find(command);
if (!cmd) return;

这就是全部:

client.on('message', message => {
    if (message.author.bot) return;

    const args = message.content.slice(prefix.length).trim().split(/ +/);
    const command = args.shift().toLowerCase();

    const cmd = client.command.find(command);
    if (!cmd) return;

    cmd.run(client, message, args);
});

任何人都知道该如何解决这个问题?

0 个答案:

没有答案