作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写以下命令
@bot.command(pass_context=True)
async def admins_only_command(ctx, *, args):
'''do stuff
如何将此命令限制为仅限管理员使用?我尝试查看ctx.author.roles.role
,它显示@everyone
。我如何检查给定用户是否是管理员
?
最佳答案
有两种方法:通过使用 has_any_role
的角色白名单
@bot.command(pass_context=True)
@commands.has_any_role("Big Cheese", "Medium Cheese")
async def admins_only_command(ctx, *, args):
'''do stuff'''
或经许可使用 has_permissions
@bot.command(pass_context=True)
@commands.has_permissions(administrator=True)
async def admins_only_command(ctx, *, args):
'''do stuff'''
这两个装饰器都是Checks ,并且会引发 CommandError
的一些子类,供您选择在失败时进行处理。
关于python - 如何只允许管理员执行命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51814995/
我是一名优秀的程序员,十分优秀!