我试图设置频道说明,但我在discord.js文档中找不到它。有人知道那个代码吗?
答案 0 :(得分:1)
您可能正在寻找:channel.setTopic()
例如:
// Set a new channel topic
channel.setTopic('Needs more rate limiting')
.then(updated => console.log(`Channel's new topic is ${updated.topic}`))
.catch(console.error);
答案 1 :(得分:0)
您可以使用.setTopic()函数。例如:
<channel>.setTopic('Topic here')