如何获取公会的角色和频道

时间:2021-05-24 12:38:10

标签: discord.js

我对制作 discord 机器人相当陌生,我正在制作 !serverinfo 命令。我遇到的问题是无法获取频道和角色,并且角色无法点击(彩色)

1 个答案:

答案 0 :(得分:1)

您可以使用 <Guild>.roles.cache<Guild>.channels.cache 返回相应的经理。将 <Guild> 替换为您的公会对象,您很可能会使用 <Message>.guild

示例

message.guild.channels.cache
// Will return Collection [Map] of all the guild's channels

message.guild.roles.cache
// Will return Collection [Map] of all the guild's roles