web-dev-qa-db-ja.com

discord.jsを使用してメッセージに反応したユーザーを収集する

特定のメッセージに反応したすべてのユーザーを収集しようとしています。私のコード

client.on('messageReactionAdd', (reaction, user) => {
    if(reaction.emoji.name === "✅") {
    console.log(reaction.emoji.users);
}

しかし、それは未定義を返します。 「reaction.emoji」を使用すると、返されます

ReactionEmoji {
  reaction: 
   MessageReaction {
     message: 
      Message {
        channel: [Object],
        id: '371695165498458115',
        type: 'DEFAULT',
        content: 'bb',
        author: [Object],
        member: [Object],
        pinned: false,
        tts: false,
        nonce: '371695172469129216',
        system: false,
        embeds: [],
        attachments: Collection {},
        createdTimestamp: 1508689433217,
        editedTimestamp: null,
        reactions: [Object],
        mentions: [Object],
        webhookID: null,
        hit: null,
        _edits: [] },
     me: true,
     count: 1,
     users: Collection { '370300235030986752' => [Object] },
     _emoji: [Circular] },
  name: '✅',

users: Collection { '370300235030986752' => [Object] },パーツを取得しようとしています。前もって感謝します。

5
Maze

docs によると、それはreaction.users

client.on('messageReactionAdd', (reaction, user) => {
    if(reaction.emoji.name === "✅") {
        console.log(reaction.users);
    }
});
6
Jake Weary