Discord.JS 在消息中添加一个按钮而不替换之前的按钮
Discord.JS Add a button to a message without replacing the previous one
我想在现有消息中添加另一个按钮(由机器人发送)我试过:
// 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] })
当我编辑组件时,它用新组件替换了第一个组件。
如何向消息中添加新按钮?
msg.edit({ embeds: ["a defined embed"], components: [msg.components[0]], row] });
我想在现有消息中添加另一个按钮(由机器人发送)我试过:
// 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] })
当我编辑组件时,它用新组件替换了第一个组件。
如何向消息中添加新按钮?
msg.edit({ embeds: ["a defined embed"], components: [msg.components[0]], row] });