Discord.js V13:如何编辑交互的消息对象?

Bla*_*ore 5 javascript bots discord discord.js

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

类型错误:interaction.message.edit() 不是函数。

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

提前致谢!

Sim*_*mon 7

您可以使用以下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: [aDifferentEmbed] })
})
Run Code Online (Sandbox Code Playgroud)