从 Discord.js v11 迁移到 v12:解决常见问题
升级到 Discord.js v12 时,您可能会遇到以下错误:重大变化。以下是一些常见问题及其解决方案:
Managers
类似的方法message.member.addRole、Guild#createChannel 和 TextBasedChannel#fetchMessages 已移至各自的管理器。例如:
await message.member.roles.add(role); await message.guild.channels.create('welcome'); const messages = await message.channel.messages.fetch();
Collection
Collection 类现在仅接受 .find 和 .findKey 的函数。使用 lambda 表达式代替属性键和值。例如:
collection.find(item => item.property === 'value');
RichEmbed/MessageEmbed
addBlankField 方法已被删除。要添加空白字段,请使用:
embed.addField('\u200B', '\u200B');
语音
所有 VoiceConnection/VoiceBroadcast#play** * 方法已统一为单一游戏方法。例如:
const dispatcher = connection.play('./music.mp3');
图像 URL
User#displayAvatarURL 和 Guild#iconURL 现在是方法。它们需要传递 ImageURLOptions 对象进行自定义:
const avatar = user.displayAvatarURL(); const icon = mesage.guild.iconURL();
其他信息
有关 v12 重大更改的综合指南,请参阅官方更新指南和变更日志。 Discord.js 文档可以帮助您找到特定的方法和属性。
以上是Discord.js v11 到 v12 迁移:有哪些常见问题以及如何解决这些问题?的详细内容。更多信息请关注PHP中文网其他相关文章!