参数不再被识别 – Discord.js v14

huangapple go评论165阅读模式
英文:

Args not being recognized anymore - Discord.js v14

问题

我最近发现当运行一个命令时,我的参数不再被识别了。
如果我不放 args,我的控制台记录为 undefined,但当我放 args 时它不记录任何东西。

我的命令处理程序:

  1. const { readdirSync } = require("fs");
  2. module.exports = (client, Discord) => {
  3. const commandFolders = readdirSync(`./Commands/`);
  4. for (const folder of commandFolders) {
  5. const commands = readdirSync(`./Commands/${folder}`).filter((files) =>
  6. files.endsWith(".js")
  7. );
  8. for (const file of commands) {
  9. const command = require(`../Commands/${folder}/${file}`);
  10. client.commands.set(command.name, command);
  11. }
  12. }
  13. };
  14. const {
  15. Client,
  16. Message,
  17. MessageEmbed,
  18. Collection,
  19. PermissionFlagsBits,
  20. } = require("discord.js");
  21. const { PREFIX } = require("../../config.json");
  22. const User = require("../../Models/User");
  23. module.exports = {
  24. name: "messageCreate",
  25. /**
  26. * @param {Client} client
  27. * @param {Message} message
  28. */
  29. async execute(message, client, Discord) {
  30. if (!message.content.startsWith(PREFIX) || message.author.bot) {
  31. return;
  32. }
  33. const args = message.content.slice(PREFIX.length).trim().split(/ +/);
  34. const commandName = args.shift().toLowerCase();
  35. const command =
  36. client.commands.get(commandName) ||
  37. client.commands.find(
  38. (cmd) => cmd.aliases && cmd.aliases.includes(commandName)
  39. );
  40. if (!commandName) return;
  41. if (!command) return;
  42. if (command.bloxia && message.guild.id !== client.config.BLOXIAID) return;
  43. if (command.developer && !client.config.DEVID.includes(message.author.id))
  44. return message.reply({
  45. content: ":x: This command is only available to developers.",
  46. ephemeral: true,
  47. });
  48. let user = client.userSettings.get(message.author.id);
  49. // If there is no user, create it in the Database as "newUser"
  50. if (!user) {
  51. const findUser = await User.findOne({ Id: message.author.id });
  52. if (!findUser) {
  53. const newUser = await User.create({ Id: message.author.id });
  54. client.userSettings.set(message.author.id, newUser);
  55. user = newUser;
  56. } else return;
  57. }
  58. if (client.maintenanced && !command.maintenancebypass)
  59. return message.reply(":x: Maintenance mode is on !");
  60. if (command.premium && user && !user.isPremium) {
  61. return message.reply({
  62. content: `> \`${message.author.username}\` You are Not Premium User`,
  63. });
  64. }
  65. if (command.owneronly && message.author.id !== client.config.OWNERID)
  66. return message.reply({
  67. content: ":x: This command is only available to the owner.",
  68. ephemeral: true,
  69. });
  70. command.execute(message, args, commandName, client, Discord);
  71. },
  72. };

如果你对某些部分有困难理解,我愿意解释,所以尽管问吧!还有一些特定要求的定义,但实际上可以忽略它们(如 command.... 等等)。

我尝试将命令代码中的 args[0](用于调用参数的方法)替换为 args[1],但没有变化。

英文:

I recently found out my arguments are not being recognized anymore when running a command.
If I don't put args my console logs undefined, but when I put args it doesn't log anything.

My command handler :

  1. const { readdirSync } = require("fs");
  2. module.exports = (client, Discord) => {
  3. const commandFolders = readdirSync(`./Commands/`);
  4. for (const folder of commandFolders) {
  5. const commands = readdirSync(`./Commands/${folder}`).filter((files) =>
  6. files.endsWith(".js")
  7. );
  8. for (const file of commands) {
  9. const command = require(`../Commands/${folder}/${file}`);
  10. client.commands.set(command.name, command);
  11. }
  12. }
  13. };
  14. const {
  15. Client,
  16. Message,
  17. MessageEmbed,
  18. Collection,
  19. PermissionFlagsBits,
  20. } = require("discord.js");
  21. const { PREFIX } = require("../../config.json");
  22. const User = require("../../Models/User");
  23. module.exports = {
  24. name: "messageCreate",
  25. /**
  26. * @param {Client} client
  27. * @param {Message} message
  28. */
  29. async execute(message, client, Discord) {
  30. if (!message.content.startsWith(PREFIX) || message.author.bot) {
  31. return;
  32. }
  33. const args = message.content.slice(PREFIX.length).trim().split(/ + /);
  34. const commandName = args.shift().toLowerCase();
  35. const command =
  36. client.commands.get(commandName) ||
  37. client.commands.find(
  38. (cmd) => cmd.aliases && cmd.aliases.includes(commandName)
  39. );
  40. if (!commandName) return;
  41. if (!command) return;
  42. if (command.bloxia && message.guild.id !== client.config.BLOXIAID) return;
  43. if (command.developer && !client.config.DEVID.includes(message.author.id))
  44. return message.reply({
  45. content: ":x: This command is only available to developers.",
  46. ephemeral: true,
  47. });
  48. let user = client.userSettings.get(message.author.id);
  49. // If there is no user, create it in the Database as "newUser"
  50. if (!user) {
  51. const findUser = await User.findOne({ Id: message.author.id });
  52. if (!findUser) {
  53. const newUser = await User.create({ Id: message.author.id });
  54. client.userSettings.set(message.author.id, newUser);
  55. user = newUser;
  56. } else return;
  57. }
  58. if (client.maintenanced && !command.maintenancebypass)
  59. return message.reply(":x: Maintenance mode is on !");
  60. if (command.premium && user && !user.isPremium) {
  61. return message.reply({
  62. content: `> \`${message.author.username}\` You are Not Premium User`,
  63. });
  64. }
  65. if (command.owneronly && message.author.id !== client.config.OWNERID)
  66. return message.reply({
  67. content: ":x: This command is only available to the owner.",
  68. ephemeral: true,
  69. });
  70. command.execute(message, args, commandName, client, Discord);
  71. },
  72. };

If you have any problems understanding some part I'm willing to explain so ask away !
There are also a bunch of definitions for certain requirement but ignore them really (if command....) etc..

I tried replacing args[0] (the method used to call args) in a command's code with args[1] but it didn't change.

答案1

得分: 0

使用这个修正后的代码:

  1. const args = message.content.slice(PREFIX.length).trim().split(/ +/);
英文:

You have a space in the regex.
Use this fixed code

  1. const args = message.content.slice(PREFIX.length).trim().split(/ +/);

huangapple
  • 本文由 发表于 2023年3月7日 23:10:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/75663743.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定