TypeError:message.client.commands.array 不是函数

TypeError: message.client.commands.array is not a function(TypeError:message.client.commands.array 不是函数)
本文介绍了TypeError:message.client.commands.array 不是函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想将我的帮助命令从 djs v12.5.3 更新到 v13,但出现此错误:TypeError: message.client.commands.array is not a function

I wanted to update my help command from djs v12.5.3 to v13 but I got this error: TypeError: message.client.commands.array is not a function

这是我之前使用的代码:

Here is my code I used before:

let commands = message.client.commands.array();
commands.forEach((cmd) => {
    if(cmd.name == args[0].toLowerCase() || cmd.aliases.includes(args[0].toLowerCase())) {
                    embed.addField("**Description**", `${cmd.description}`, false)
                    embed.addField("**Usage**", `${cmd.usage}`, true)
                    embed.addField("**Aliases**", `${cmd.alias}`, true)
                    embed.addField("**Examples**", `${cmd.examples}`, true)
                    message.channel.send({ embeds: [embed] });
    }
})

我尝试将 let commands = message.client.commands.array(); 更改为 let commands = message.client.commands.values(); 但得到了另一个错误:TypeError: commands.forEach 不是函数!如何在 v13 上再次列出我的命令?

I tried changing let commands = message.client.commands.array(); to let commands = message.client.commands.values(); but got another error: TypeError: commands.forEach is not a function! How can I list my commands again on v13?

推荐答案

该功能已被删除.您需要执行以下操作,而不是 .array:

That function was removed. Instead of .array, you need to do the following:

let commands = [...message.client.commands.values()]

但是没有理由转换,除非您想轻松显示所有值.

However there is no reason to convert, unless you want to display all the values easily.

message.client.commands.each 可以正常工作

message.client.commands.each((cmd) => {})

这篇关于TypeError:message.client.commands.array 不是函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
Ordinals in words javascript(javascript中的序数)
getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)