繁体   English   中英

Discord.js V13:如何编辑交互消息Object?

[英]Discord.js V13: How to edit Message Object of Interaction?

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

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

我可以打印出interaction.message并显示消息 Object,但无法调用 function。 我正在使用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: [aDifferentEmbed] })
})

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM