我试图同时创建一个类别和一个频道,将频道的父级设置为所述类别。但是,当我搜索通道缓存时,它为我正在搜索的类别返回undefined。
message.guild.channels.create(`Category ${f.number}`, {
type: 'category',
permissionOverwrites: [
{
//everyone
id: '762492106156539945',
deny: ['VIEW_CHANNEL']
},
{
//verified
id: '763048301552992346',
allow: ['VIEW_CHANNEL']
}
]
});
message.guild.channels.create(`cat-${f.number}-chat`, {
type: 'text'
}).then(channel => {
var category = message.guild.channels.cache.get("name", `Category ${f.number}`);
channel.setParent(category.id);
}).catch(console.error);
控制台正在打印“ TypeError:无法读取未定义的属性'id'”。 我还需要稍后以某种方式删除频道和类别。
答案 0 :(得分:1)
等待两个创建都先使用Promise.all
const categoryPromise = message.guild.channels.create(`Category ${f.number}`, {
type: 'category',
permissionOverwrites: [
{
//everyone
id: '762492106156539945',
deny: ['VIEW_CHANNEL']
},
{
//verified
id: '763048301552992346',
allow: ['VIEW_CHANNEL']
}
]
});
const channelPromise = message.guild.channels.create(`cat-${f.number}-chat`, {
type: 'text'
})
Promise.all([categoryPromise, channelPromise])
.then(([category, channel]) => {
channel.setParent(category);
}).catch(console.error);