discord.py |ValueError:“Test”必须全部小写 [closed]

discord.py | ValueError: 'Test' must be all lower-case [closed]

提问人:Kot_v_palto 提问时间:11/18/2023 更新时间:11/18/2023 访问量:21

问:


这个问题是由一个错别字或一个无法再重现的问题引起的。虽然类似的问题可能在这里成为主题,但这个问题的解决方式不太可能帮助未来的读者。

6天前关闭。

我正在创建一个斜杠命令,但遇到了麻烦 ValueError:“Test”必须全部为小写。如何解决?

import discord
from discord.ext import commands
from discord import app_commands
intents = discord.Intents.default()
intents.message_content = True
client = discord.Client(intents=intents)
bot = commands.Bot(command_prefix=config["prefix"], intents=intents)

@bot.tree.command(name='Test',description='slash welcome')
async def slash_command(interaction:discord.Interaction):
    await interaction.response.send_message("Hello World!")
Python Discord discord.py

评论

2赞 Karl Knechtel 11/18/2023
错误消息的哪一部分不清楚?你明白“小写”是什么意思吗?
0赞 h0r53 11/18/2023
您正在创建“斜杠命令”。斜杠命令必须为小写。因此应该是 ,它翻译为命令。,不被接受。Testtest/test/Test
0赞 Kot_v_palto 11/18/2023
@Х0Р53谢谢你,它现在可以工作了

答: 暂无答案