ctx 是必需的参数
ctx is a required argument
我正在尝试制作一个简单的音乐机器人。当我执行命令时出现此错误:discord.ext.commands.errors.MissingRequiredArgument: ctx is a required argument that is missing.
这是我的代码:
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix= "-")
class VoiceConnectionError(commands.CommandError):
"""Custom Exception class for connection errors."""
...
class InvalidVoiceChannel(VoiceConnectionError):
"""Exception for cases of invalid Voice Channels."""
...
@bot.event
async def on_ready():
print('Bot ready')
@bot.command(name='connect', aliases=['join'])
async def connect(self, ctx, *, channel: discord.VoiceChannel=None):
await ctx.send(f'Connected to: **{channel}**', delete_after=10)
bot.run('TOKEN')
命令应将机器人移动到 discord 中的语音频道。
这是完整的回溯:
Full traceback:
Ignoring exception in command connect:
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/bot.py", line 859, in invoke
await ctx.command.invoke(ctx)
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/core.py", line 718, in invoke
await self.prepare(ctx)
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/core.py", line 682, in prepare
await self._parse_arguments(ctx)
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/core.py", line 596, in _parse_arguments
transformed = await self.transform(ctx, param)
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/core.py", line 442, in transform
raise MissingRequiredArgument(param)
discord.ext.commands.errors.MissingRequiredArgument: ctx is a required argument that is missing.
如果它们是 part of a cog,您的命令应该只接受 self
参数。删除参数:
@bot.command(name='connect', aliases=['join'], pass_context=True)
async def connect(ctx, *, channel: discord.VoiceChannel=None):
...
我正在尝试制作一个简单的音乐机器人。当我执行命令时出现此错误:discord.ext.commands.errors.MissingRequiredArgument: ctx is a required argument that is missing.
这是我的代码:
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix= "-")
class VoiceConnectionError(commands.CommandError):
"""Custom Exception class for connection errors."""
...
class InvalidVoiceChannel(VoiceConnectionError):
"""Exception for cases of invalid Voice Channels."""
...
@bot.event
async def on_ready():
print('Bot ready')
@bot.command(name='connect', aliases=['join'])
async def connect(self, ctx, *, channel: discord.VoiceChannel=None):
await ctx.send(f'Connected to: **{channel}**', delete_after=10)
bot.run('TOKEN')
命令应将机器人移动到 discord 中的语音频道。
这是完整的回溯:
Full traceback:
Ignoring exception in command connect:
Traceback (most recent call last):
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/bot.py", line 859, in invoke
await ctx.command.invoke(ctx)
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/core.py", line 718, in invoke
await self.prepare(ctx)
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/core.py", line 682, in prepare
await self._parse_arguments(ctx)
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/core.py", line 596, in _parse_arguments
transformed = await self.transform(ctx, param)
File "/anaconda3/lib/python3.6/site-packages/discord/ext/commands/core.py", line 442, in transform
raise MissingRequiredArgument(param)
discord.ext.commands.errors.MissingRequiredArgument: ctx is a required argument that is missing.
如果它们是 part of a cog,您的命令应该只接受 self
参数。删除参数:
@bot.command(name='connect', aliases=['join'], pass_context=True)
async def connect(ctx, *, channel: discord.VoiceChannel=None):
...