問題描述
我不知道這是否可能,但我正在嘗試讓我的機(jī)器人返回它與用戶共享的所有服務(wù)器.
I don't know if it's possible, but I'm trying to make my bot returning all the servers it shares with an user.
所以我從 bot 所在的公會那里獲得了所有 id,以及來自用戶的 id.
So I got all the ids from the guilds' where the bot is, and the id from the user.
而且我不知道如何檢查每個公會是否有用戶的 id.
And I don't know how to check for each guild if the user's id is on it or not.
我嘗試過這樣做:
let user_id = message.author.id;
let guild_list = [];
client.guilds.cache.forEach(guild => {
guild_list.push(guild.id);
})
for (let i = 0; i < guild_list.length; i++){
let thisGuild = client.guilds.cache.get(guild_list[i]);
if(thisGuild.member(user_id)){
message.channel.send("Shared server : " + guild_list[i]);
}
}
但是 Guildmember
類只檢查運(yùn)行命令的服務(wù)器上的用戶 ID.我不知道這是否可能,而且我在文檔中找不到任何可以幫助我的東西.
But the Guildmember
class only checks the user's id on the server where the command is run.
I don't know if it's possible, and I don't find anything that could help me in the documentation.
推薦答案
很有可能...
我們可以使用 Collector#filter 方法,因為我們想要過濾 bot 和作者所在的公會.
We can use the Collector#filter method for this since we would want to filter the guild(s) the bot and the author is.
const mutualGuilds = client.guilds.cache.filter((guild) => {
return guild.members.cache.has(message.author.id);
});
// This will log the mutual guild(s) the bot and the author is in, of course you can change it however you'd like.
console.log(mutualGuilds);
就這么簡單.
這篇關(guān)于檢查用戶是否在特定的公會中 discord.js的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!