📌  相关文章
📜  discord js从用户那里获取特定用户 - Javascript代码示例

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

代码示例4
// You can use .get() with an ID, or find() with a parameter to compare

client.users.cache.get('ID')
client.users.cache.find(user => user.username === "Specific username")
client.users.cache.find(user => user.tag === "Specific username#1234")