Fetch bot messages from bots Discord.js(从机器人 Discord.js 获取机器人消息)
问题描述
我正在尝试制作一个机器人来获取频道中以前的机器人消息,然后将它们删除.我目前有这段代码,当输入 !clearMessages
时,它会删除频道中的所有消息:
I am trying to make a bot that fetches previous bot messages in the channel and then deletes them. I have this code currently that deletes all messages in the channel when !clearMessages
is entered:
if (message.channel.type == 'text') {
message.channel.fetchMessages().then(messages => {
message.channel.bulkDelete(messages);
messagesDeleted = messages.array().length; // number of messages deleted
// Logging the number of messages deleted on both the channel and console.
message.channel.send("Deletion of messages successful. Total messages deleted: "+messagesDeleted);
console.log('Deletion of messages successful. Total messages deleted: '+messagesDeleted)
}).catch(err => {
console.log('Error while doing Bulk Delete');
console.log(err);
});
}
我希望机器人仅从该频道中的所有机器人消息中获取消息,然后删除这些消息.
I would like the bot to only fetch messages from all bot messages in that channel, and then delete those messages.
我该怎么做?
推荐答案
每个 Message
有一个 author
属性,表示 用户
.每个 User
都有一个 bot
属性 表示如果用户是机器人.
Each Message
has an author
property that represents a User
. Each User
has a bot
property that indicates if the user is a bot.
使用该信息,我们可以使用 messages.filter(msg => msg.author.bot)
过滤掉不是机器人消息的消息:
Using that information, we can filter out messages that are not bot messages with messages.filter(msg => msg.author.bot)
:
if (message.channel.type == 'text') {
message.channel.fetchMessages().then(messages => {
const botMessages = messages.filter(msg => msg.author.bot);
message.channel.bulkDelete(botMessages);
messagesDeleted = botMessages.array().length; // number of messages deleted
// Logging the number of messages deleted on both the channel and console.
message.channel.send("Deletion of messages successful. Total messages deleted: " + messagesDeleted);
console.log('Deletion of messages successful. Total messages deleted: ' + messagesDeleted)
}).catch(err => {
console.log('Error while doing Bulk Delete');
console.log(err);
});
}
这篇关于从机器人 Discord.js 获取机器人消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从机器人 Discord.js 获取机器人消息


基础教程推荐
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01