短时间后如何删除邮件或嵌入?
答案 0 :(得分:2)
您必须对消息对象使用.delete
方法才能删除消息。只需等待消息发送,然后在一段时间后将其删除即可。
对于(丰富)嵌入,请使用以下代码:
const Discord = require('discord.js');
const RichEmbed = new Discord.RichEmbed()
.setAuthor('test');
const message = await message.channel.send({ embed: RichEmbed }).then(r => r.delete('time in milliseconds'));
对于普通邮件,请使用以下代码:
const message = await message.channel.send('Hello').then(r => r.delete('time in milliseconds'))