📌  相关文章
📜  discord.js 获取所有具有角色的成员 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:50.453000             🧑  作者: Mango

代码示例1
//outputs the IDs of all members with the specified role as an array

// === discord.js v11 ===
message.guild.roles.get('ROLE-ID').members.map(m=>m.user.id);

// === discord.js v12 ===
message.guild.roles.cache.get('ROLE-ID').members.map(m=>m.user.id);