gpt4 book ai didi

javascript - 使用 discord.js V12 获取消息对我不起作用。 [Discord.js V12]

转载 作者:行者123 更新时间:2023-12-01 15:43:56 25 4
gpt4 key购买 nike

正如您在我的标题中看到的那样,我无法使用 discord.js 获取消息。

在 discord.js v11 中,我使用了这个:

var bot = new Discord.Client();
bot.on('ready', () => {
bot.channels.get(channelID).fetchMessages({ around: messageID, limit: 1 })
.then(async msg => {
//my code here
});
});

ID discord.js v12 应该是这样的:

var bot = new Discord.Client();
bot.on('ready', () => {
bot.channels.cache.get(channelID).messages.fetch({ around: messageID, limit: 1 })
.then(async msg => {
//my code here
});
});

但这对我不起作用..

你能帮我吗?
可能与其他选择。

谢谢您的帮助 !

编辑 1:
它返回: (node:17184) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'messages' of undefined

最佳答案

好吧,我很抱歉,我发现我的代码是正确的,但我不知道为什么当我尝试它时它不起作用..
我从字面上写了这个:


bot.channels.cache.get('ChannelID').messages.fetch({ around: 'messageID', limit: 1 })

.then(async msg => {

//my code here
})

那是同样的狗屎,我为此浪费了几个小时'-'

无论如何,很抱歉浪费了您的时间。

我会删除这个。

关于javascript - 使用 discord.js V12 获取消息对我不起作用。 [Discord.js V12],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60923804/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com