将按钮添加到发送到指定 applicationChannelId 的应用程序

Adding buttons to an application sent to specified applicationChannelId

是的,我知道 TLDR,但我会​​很感激你的帮助

好的,下面是我用于应用程序的代码墙

它使用一个按钮来启动应用程序(提问)

并在填写 application 后,将 application 发送到指定的 applicationChannelId

有什么方法可以将按钮添加到发送到 applicationChannelIdapplication 以接受或拒绝成员?

Accept would add a role by id and sends a message to the original applicant

//Not the code I tried using just an example for what the Accept button would do
//
let teamRole = message.guild.roles.cache.find(role => role.id == "761996603434598460")
member.roles.add(teamRole)

member.send("You have been accepted into the team")

Deny would send a message to the original applicant

过去几天我尝试过这样做,但就是无法正常工作,要么什么都不做,要么破坏一切

我从下面的代码中删除了一些信息以使其更短

我的按钮代码我已经用来为申请人申请

client.on("message", async (message) => {
    const reqEmbed = {
        color: 0xed5181,
        title: 'Blind Spot Team Requirements',
        url: 'link',
        author: {
            name: '',
            icon_url: '',
            url: '',
        },
        description: '',
        thumbnail: {
            url: '',
        },
        fields: [{
            "name": `Read through these Requirements`,
            "value": `- requirments will go here`,
        }, ],
        image: {
            url: '',
        },
        footer: {
            text: 'Blind Spot est 2019',
            icon_url: 'link',
        },
    };
     //
    // Don't reply to bots
    let admins = ['741483726688747541', '741483726688747541'];
    if (message.content.startsWith(`#blindspot`)) {
        message.delete();
        const amount = message.content.split(" ")[1];
        if (!admins.includes(message.author.id)) {
            message.reply("You do not have permission to do that!");
            return;
        }
        // Perform raw API request and send a message with a button,
        // since it isn't supported natively in discord.js v12
        client.api.channels(message.channel.id).messages.post({
            data: {
                embeds: [reqEmbed],
                components: [{
                    type: 1,
                    components: [{
                        type: 2,
                        style: 4,
                        label: "Apply",
                        // Our button id, we can use that later to identify,
                        // that the user has clicked this specific button
                        custom_id: "send_application"
                    }]
                }]
            }
        });
    }
});

处理问题并将应用程序发送到applicationChannelId的其余代码] 完成后

// Channel id where the application will be sent
const applicationChannelId = "652099170835890177";
// Our questions the bot will ask the user
const questions = ["These are the questions but have deleted them to make this shorter",];
// Function that will ask a GuildMember a question and returns a reply
async function askQuestion(member, question) {
    const message = await member.send(question);
    const reply = await message.channel.awaitMessages((m) => {
        return m.author.id === member.id;
    }, {
        time: 5 * 60000,
        max: 1
    });
    return reply.first();
}
client.ws.on("INTERACTION_CREATE", async (interaction) => {
    // If component type is a button
    if (interaction.data.component_type === 2) {
        const guildId = interaction.guild_id;
        const userId = interaction.member.user.id;
        const buttonId = interaction.data.custom_id;
        const member = client.guilds.resolve(guildId).member(userId);
        if (buttonId == "send_application") {
            // Reply to an interaction, so we don't get "This interaction failed" error
            client.api.interactions(interaction.id, interaction.token).callback.post({
                data: {
                    type: 4,
                    data: {
                        content: "I have started the application process in your DM's.",
                        flags: 64 // make the message ephemeral
                    }
                }
            });
            try {
                // Create our application, we will fill it later
                const application = new MessageEmbed()
                .setTitle("New Application")
                .setDescription(`This application was submitted by ${member}/${member.user.tag}`)
                .setFooter("If the @Username doesn't appear please go to general chat and scroll through the member list")
                .setColor("#ED4245");
                const cancel = () => member.send("Your application has been canceled.\n**If you would like to start your application again Click on the Apply button in** <#657393981851697153>");
                // Ask the user if he wants to continue
                const reply = await askQuestion(member, "Please fill in this form so we can proceed with your tryout.\n" + "**Type `yes` to continue or type `cancel` to cancel.**");
                // If not cancel the process
                if (reply.content.toLowerCase() != "yes") {
                    cancel();
                    return;
                }
                // Ask the user questions one by one and add them to application
                for (const question of questions) {
                    const reply = await askQuestion(member, question);
                    // The user can cancel the process anytime he wants
                    if (reply.content.toLowerCase() == "cancel") {
                        cancel();
                        return;
                    }
                    application.addField(question, reply);
                }
                await askQuestion(member, "Would you like to submit your Application?\n" + "**Type `yes` to get your Application submitted and reviewed by Staff Members.**");
                // If not cancel the process
                if (reply.content.toLowerCase() != "yes") {
                    cancel();
                    return;
                }
                // Send the filled application to the application channel
                client.channels.cache.get(applicationChannelId).send(application);
            } catch {
                // If the user took too long to respond an error will be thrown,
                // we can handle that case here.
                member.send("You took too long to respond or Something went wrong, Please contact a Staff member\n" + "The process was canceled.");
            }
        }
    }
});

在这一点上,我什至不想这样做并保持原样,因为它让我发疯

你很好!就像发送普通按钮一样发送它!

    const {
        MessageButton,
        MessageActionRow
    } = require("discord.js"),
        const denybtn = new MessageButton()
            .setStyle('DANGER')
            .setEmoji('❌')
            .setCustomId('deny')
    
    const acceptbtn = new MessageButton()
        .setStyle('SUCCESS')
        .setEmoji('✔')
        .setCustomId('accept')
    
    
    client.channels.cache.get(applicationChannelId).send({
        embeds: [application],
        components: [new MessageActionRow().addComponents["acceptbtn", "denybtn"]]
    });
    
    const collector = msg.createMessageComponentCollector({
        time: 3600000,
        errors: ["time"],
    });
    await collector.on("collect", async (r) => {
        if (r.user.id !== message.author.id)
            return r.reply({
                content: "You may not accept/ deny this application",
                ephemeral: true,
            });
        if (r.customId === "acceptbtn") {
            let teamRole = message.guild.roles.cache.find(role => role.id == "761996603434598460")
            member.roles.add(teamRole)
            member.send("You have been accepted into the team")
        }
        if (r.customId === "denybtn") {
            member.send("You have been rejected");
        }
    });

注意:
请注意,由于您的问题缺少您正在使用的函数/方法定义,我使用了 discord.js v13 的方法,您可能会更新您的 discord.js 版本并且代码将按预期工作尽管组件收集器的功能已直接从您的问题中复制粘贴并且在某些情况下例如 member#send 成员未定义,因此请将其视为一个例子,我劝你写代码而不是直接复制粘贴!