TypeError: message.client.commands.array is not a function(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 不是函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:TypeError:message.client.commands.array 不是函数
基础教程推荐
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
