gpt4 book ai didi

javascript - Discord.js V13 : How to edit Message Object of Interaction?

转载 作者:行者123 更新时间:2023-12-04 14:52:45 25 4
gpt4 key购买 nike

我正在尝试将我的不和谐机器人更新到新版本的 discord.js (v13)。我有一个带有嵌入和两个按钮的消息,一个用于上一页,一个用于下一页。当用户单击按钮时,我正在尝试编辑嵌入以显示其他内容。但后来我得到一个

TypeError: interaction.message.edit() is not a function.


我可以打印出 interaction.message并显示消息对象,但无法调用该函数。我正在使用 interactionCreate事件。
提前致谢!

最佳答案

您可以使用 interaction.update()方法:

// send a message

message.channel.send({ embeds: [embed], components: [buttons] })

/*
listen for the "interactionCreate" event or use any other method
of detecting an interaction like interaction collectors or awaitMessageComponent
*/

client.on("interactionCreate", (interaction) => {
interaction.update({ embeds: [aDiffrentEmbed] })
})

关于javascript - Discord.js V13 : How to edit Message Object of Interaction?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68782435/

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