检查 Discord 服务器中是否存在用户 ID

编程入门 行业动态 更新时间:2024-10-25 15:26:48
本文介绍了检查 Discord 服务器中是否存在用户 ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我的 Discord 机器人需要检查用户是否在服务器中.我正在使用 node.js 和 discord.js.

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?

推荐答案

如果你有 Guild 对象,你可以使用 Guild.member() 方法.

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 }

更多推荐

检查 Discord 服务器中是否存在用户 ID

本文发布于:2023-06-10 22:55:52,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/620849.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:是否存在   器中   用户   Discord   ID

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!