当您使用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)
| 归档时间: |
|
| 查看次数: |
10539 次 |
| 最近记录: |