message.guild.roles.find不是函数

时间:2020-03-07 19:02:09

标签: discord.js

为自已答案进行了编辑

message.guild.roles.find is not a function是在DJS v12上使用DJS v11方法的结果,也就是说message.guild.roles.find已过时,应替换为

message.guild.roles.cache.find

DJS v11现在已停产。请遵循本指南来更新您的v12 Here

代码

1 个答案:

答案 0 :(得分:6)

是的,由于v12使用Managers,因此您现在必须使用message.guild.roles.cache.find。 您可以自行阅读documentation来查找其他更改^^