不一致。JS向消息添加按钮

2022-02-23 00:00:00 javascript discord.js
我想向现有消息添加另一个按钮(由机器人发送) 我已尝试:

// const... log in... ....
let msg = await interaction.channel.fetchMessage(interaction.options.get('message-id'))
if(!msg || msg?.author?.id !== client.user.id) return interaction.reply({ content: "Error..." })

msg.edit({ embeds: ["a defined embed"], components: [row] })

当我编辑组件时,它会用新组件替换第一个组件。

如何向邮件添加新按钮?


解决方案

不要编辑整个邮件。只需执行message.edit({components: [row]})

它应该只添加按钮而不编辑消息

相关文章