获取我的机器人发送的消息的消息 ID

sku*_*key -1 javascript node.js discord.js

我需要获取我的不和谐机器人发送的消息的消息 ID(它发送丰富的嵌入)

谢谢

Fed*_*ndi 6

当您使用TextChannel.send()(或.sendDiscord.js 中的任何其他类型)时,它会返回一个Promise,该Promise使用您刚刚发送的消息进行解析。
要处理该消息,您可以使用await将其存储在变量中,也可以使用Promise.then()并将其余代码作为函数传递。

下面是一个例子:

// with async/await:
async function replyAndLog() {
  let sent = await message.reply("Your stuff..."); // this returns the message you just sent
  let id = sent.id; // you can get its ID with <Message>.id, as usually
  console.log(id);
}

// with <Promise>.then():
message.reply("Your stuff").then(sent => { // 'sent' is that message you just sent
  let id = sent.id;
  console.log(id);
});
Run Code Online (Sandbox Code Playgroud)