简体   繁体   中英

Discord.js guildMemberAdd Get Guild

How can I get the Guild ID from the guildMemberAdd event being fired in discord.js?

Checked the discord.js documentation but couldn't find anything about getting the Guild, just the member.

Use GuildMember.guild

client.on('guildMemberAdd', member => {
let { guild } = member //guild is now the member's guild
})

You can use <GuildMember.guild>
Example:

client.on('guildMemberAdd', member => {
   let guild = member.guild;
})

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM