我需要获取我的不和谐机器人发送的消息的消息ID(它发送丰富的嵌入代码)
谢谢
最佳答案
当您使用TextChannel.send()
(或Discord.js中的任何其他类型的.send
)时,它会返回一个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);
});
关于javascript - 获取我的机器人发送的消息的消息ID,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53693209/