python - Discord.py 按钮和下拉菜单,未获取正确的库

标签 python python-3.x discord discord.py

修复:添加 DiscordComponents(机器人)

我正在尝试获取按钮或下拉菜单,以允许用户进行选择。然而,我一直无法让它工作,因为这两种方法最终仍然会给我带来组件问题。

错误信息是: 第 134 行,以 rps 为单位 m = 等待 ctx.send( 类型错误:send() 收到意外的关键字参数“组件”

我已经用pip安装了discord_components并导入了它。我对错误消息的来源感到困惑。

@bot.command(name = "rps")
async def rps(ctx):
    ch1 = ["Rock","Scissors","Paper"]
    comp = random.choice(ch1)

    yet = discord.Embed(title = f"{ctx.author.display_name}'s RPS game", description = "You have yet to select anything")

    win = discord.Embed(title = f"{ctx.author.display_name} Won!", descrption = "Congrats! You won.")

    out = discord.Embed(title = f"{ctx.author.display_name} was too slow.", descrption = "Okay then you were just too slow for me. ")

    lost = discord.Embed(title = f"{ctx.author.display_name} lost", descrption = "Aw darn. Unfortunatly you lost this one.")

    tie = discord.Embed(title = f"{ctx.author.display_name} tied with the bot!", descrption = "Well thats interesting. It was a tie.")


    m = await ctx.send(
        embed=yet,
        components=[Select(placeholder="Select 1", options=[SelectOption(label="Rock", value="Rock"), SelectOption(label="Paper", value="Paper"), SelectOption(label="Scissors", value="Scissors")])]
        ,
    )

    interaction = await bot.wait_for("select_option", check = lambda i: i.component[0].value == "A")
    await interaction.respond(content = f"{interaction.component[0].label} selected!")

我导入的内容以及我的机器人是如何定义的:

import os, csv, random, discord, asyncio, pandas, requests, json, traceback
from discord.ext import commands
from dotenv import load_dotenv
from discord_components import DiscordComponents, Button, Select, SelectOption

load_dotenv()
botToken = os.getenv("DiscBotToken")

最佳答案

我帮不了你,但我可以给你一个有效的代码。

import discord
from discord.ext import commands
from discord_components import DiscordComponents, Select, SelectOption, Button,ButtonStyle
from discord.utils import get

bot = commands.Bot(command_prefix='.')

@bot.event
async def on_ready():
DiscordComponents(bot)
print('Connected')

@bot.command()
async def button(ctx):
    embed = discord.Embed(title='Test',description='Test text')

await ctx.send(embed=embed, components=[Button(label='Test', custom_id="test-id", style=ButtonStyle.red)])
interaction = await bot.wait_for(
"button_click", check=lambda inter: inter.custom_id == "test-id")

@bot.event
async def on_button_click(interaction):
    await interaction.respond(type=6)
        await interaction.author.send("Click")

和选择菜单

import discord
from discord.ext import commands
from discord_components import DiscordComponents, Select, SelectOption, Button, ButtonStyle
from discord.utils import get

bot = commands.Bot(command_prefix='.')

@bot.event
async def on_ready():
    DiscordComponents(bot)
    print('Connected')

@bot.command()
async def sm(ctx):
    if ctx.author.id == 670325098598629377 or 426376741028888576:
        await ctx.send(
    '>>> 'Text',
    components = [
    Select(
        placeholder = 'SelectMenu',
        options = [
            SelectOption(label="SelectMenu1", value="value1"),
            SelectOption(label="SelectMenu2", value="value2"),
            SelectOption(label="SelectMenu3", value="value3"),
            SelectOption(label = "SelectMenu4", value = "value4"),
            SelectOption(label="SelectMenu5", value="value5"),
            SelectOption(label="SelectMenu6", value="value6"),
            SelectOption(label = "SelectMenu7", value = "value7"),
            SelectOption(label = "SelectMenu8", value = "value8")
            ])])

@bot.event
async def on_select_option(interaction):
    if interaction.message.id == 891587821368905728: #Message id(not obligatory)
        await interaction.respond(type=6)
        if interaction.values[0] == "value1":
            await interaction.author.send("Menu 1")
        elif interaction.values[0] == "value2":
            await interaction.author.send("Menu 2")

关于python - Discord.py 按钮和下拉菜单,未获取正确的库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68560781/

相关文章:

python - 删除嵌入后发送另一个嵌入不起作用

javascript - 我该如何处理错误,忽略它并继续使用该功能?不和谐.js

javascript - Discord.js 向特定 channel 发送消息

python - 基于 expat 的 xml 解析脚本在 Linux 上不工作,在 Windows 上工作

python - 从 Python 和 happybase/Thrift 连接到 Hbase

Python Windows 枚举已安装的字体

python - 将图像复制到剪贴板?

python - 如何在没有通用 View 的 post_save_redirect 参数的情况下重定向到 Django 中新创建的对象

python - Cython:如何制作具有不同签名的函数数组

python - 无法使用 python3 安装 openCV 3.1.0。 CMAKE 未正确包含或链接 python