我的问题如下:编译时,出现错误,指出未定义属性'execute'。我想做的是打开另一个文件夹中的文件,然后将其停放在if中,在命令处理文档的指导下,我不知道该错误是否在另一个名为“ ping”的文件中.js”。我最近开始学习,所以我不太了解。 主要代码如下:
const Discord = require('discord.js');
const { token, default_prefix } = require('./conf.json');
const client = new Discord.Client();
const fs = require('fs');
client.commands = new Discord.Collection();
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
client.commands.set(command.name, command);
}
client.once('ready', () => {
console.log('Ready!');
});
client.on('message', async message => {
if (!message.content.startsWith(default_prefix) || message.author.bot) return;
const args = message.content.slice(default_prefix.length).split(/ +/);
const command = args.shift().toLowerCase();
if (command === 'ping') {
client.commands.get('ping').execute(message, args);
}
});
client.login(token);
“ ping.js”代码为:
const Discord = require('discord.js');
module.exports = {
description: "Get the latency of the bot.",
usage: {},
examples: {},
aliases: [ "pong", "latency", "uptime" ],
permissionRequired: 0,
checkArgs: (args) => !args.length
}
module.exports.run = async function (client, message, args, config, gdb, prefix, permissionLevel, db) {
let botMsg = await message.channel.send("Pinging")
botMsg.edit({
embed: {
name: "ping",
title: "? Ping",
color: 0x2ed32e,
description: [
"**Server**: `" + (message.createdAt - message.createdAt) + "ms`",
"**API**: `" + Math.round(client.ws.ping) + "ms`",
"**Uptime**: `" + msToTime(client.uptime) + "`"
].join("\n"),
footer: { text: "Requested by " + message.author.tag, icon_url: message.author.displayAvatarURL }
}
})
}
function msToTime(ms) {...
}
它可以工作,但是如果我直接将其添加到主代码中,但我不希望这样做。如果您有任何想法或知道解决方案,我将不胜感激。
答案 0 :(得分:1)
那是因为您在此行将其命名为run
而不是execute
:
module.exports.run = async function ()
将其更改为执行,它应该可以正常工作,如果您想保留关键字run
而不是client.commands.get('ping').execute(message, args)
,请使用 client.commands.get('ping').run(message, args)
我还应该提到您有很多参数:
execute function (client, message, args, config, gdb, prefix, permissionLevel, db) {
//...
}
在args之后的任何内容都将是未定义的,因为您仅在这里传递了messsage和args,
client.commands.get('ping').execute(message, args)
答案 1 :(得分:0)
之所以说execute is undefined
是因为您没有在execute
中定义ping.js
。
您可以执行以下任一操作:
ping.js
中将module.exports.run
更改为module.exports.execute
client.commands.get('ping').execute
更改为client.commands.get('ping').run
的原因是,在调用command.execute()
时,您试图在命令模块中调用名为“ execute”的函数。由于您将其命名为run
而不是execute
,因此它将查找错误的函数,但找不到它。