首页 > 解决方案 > Discord.js 斜线命令选项

问题描述

我正在使用 WOKCommands,并且想做这样你只能选择一个语音通道。我怎样才能做到这一点?

options: [
        {
            name: 'channel',
            description: ' Voice channel in which you want to play your activity',
            required: true,
            type: discord_js_1.default.Constants.ApplicationCommandOptionTypes.CHANNEL
            
        },
    ],

标签: discorddiscord.js

解决方案


您不能将选项类型作为语音通道
,因为它不是有效类型,但channel
这种情况下,您可以检查通道类型是否为语音并给他一条错误消息以提供语音通道
示例:

let channel = interaction.options.getChannel(interaction.options.data[0].name);
if(channel.type !== "GUILD_VOICE") return interaction.channel.send({ content:"Please provide a valid voice channel" });

推荐阅读