Check if user ID exists in Discord server

夙愿已清 提交于 2019-12-11 04:11:39

问题


My Discord bot needs to check whether a user is in the server or not. I'm using node.js and discord.js.

var USER_ID = randomNumbers
if (client.guild.member(USER_ID).exists){
   do something
}

Is there a way to do this?


回答1:


If you have the Guild object, you can use the Guild.member() method.

let guild = client.guilds.get('guild ID here'),
  USER_ID = '123123123';

if (guild.member(USER_ID)) {
  // there is a GuildMember with that ID
}



回答2:


This is very similar to Way to check if a channel exists and the solution should be identical. Essentially, you need to get the guild collection, and then use the discord.js 'Collection.exists' helper function to check if the element (user id) exists in the collection (channel user list).

If in doubt, always check the documentation. :)

https://discord.js.org/#/docs/main/stable/class/Collection?scrollTo=exists

EDIT : Upon further reading, I noticed that 'Collection.exists' is deprecated. The documentation suggests using 'Collection.has' in it's place.




回答3:


You might find this to be helpful, provided you have an array of server member IDs and the ID of the member you are looking for: How do I check if an array includes an object in JavaScript?

You can use Array#includes to check to see if an array contains a specified object, or in this case your member ID.



来源:https://stackoverflow.com/questions/53278791/check-if-user-id-exists-in-discord-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!