我需要帮助来访问对象内的信息

时间:2019-06-04 15:54:40

标签: javascript object

使用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”,但不确定。

1 个答案:

答案 0 :(得分:0)

使用此:

message.mentions.users.first().id