使用Discord机器人工作,我需要用户ID,在这种情况下为“ xxx”。不确定如何获取。
我尝试过 n.mentions.users.User。 -n.mentions.users.User()
我在应用程序中拥有的内容:
bot.on('message', msg => {
if (msg.content === 'myId'){
msg.reply().then(n => {
console.log(n.mentions.users);
});
}
})
我得到的回报:
Collection [Map] {
'1803209281398201380913' => User {
id: 'xxx',
username: 'zzz',
discriminator: '0000'
}
我希望是“ xxx”,但不确定。
答案 0 :(得分:0)
使用此:
message.mentions.users.first().id