discord.js v12 check if channel exists(discord.js v12 检查频道是否存在)
问题描述
我正在 discord.js 上编写我自己的票务机器人.我需要检查公会是否有频道(按名称).这是一小段代码:
I'm coding my own ticket bot on discord.js. I need to check if guild have a channel (by name). Here's little piece of code:
if (userTickets.has(user.id) || reaction.message.guild.channels.cache.???(c => c.name === user.username.toLowerCase() + 's-ticket')) {
user.send("You already have a ticket!");
return;
}
我尝试了以下方法:
reaction.message.guild.channels.cache.find(c => c.name === user.username.toLowerCase() + 's-ticket')
reaction.message.guild.channels.cache.has(c => c.name === user.username.toLowerCase() + 's-ticket')
reaction.message.guild.channels.cache.has(user.username.toLowerCase() + 's-ticket')
但没有任何帮助
解决方案:正如 @Chiitoi 所建议的,在这种情况下最好使用 some()
函数.另外,user.username
返回的是带有空格和特殊字符的字符串,所以需要解析一下.
SOLUTION:
As suggested by @Chiitoi, in this case it is better to use some()
function.
Also, user.username
returns string with spaces and special characters, so you need to parse it.
此代码适用于我:
if (userTickets.has(user.id) || reaction.message.guild.channels.cache.some((channel) => channel.name === username.replace(/[^a-zA-Z0-9-]/ig, "") + 's-ticket')) {
user.send("You already have a ticket!");
return;
}
推荐答案
我认为 some() 方法 在这里可能很好.user.username
返回什么?我想知道返回的值是否有任何特殊或唯一字符.
I think the some() method might be good here. And what does user.username
return? I'm wondering if the returned value has any special or unique characters.
这篇关于discord.js v12 检查频道是否存在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:discord.js v12 检查频道是否存在


基础教程推荐
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01