如何使用discord bot向特定频道发送消息?

时间:2021-03-20 19:22:24

标签: javascript typescript discord discord.js

我搜索了互联网,但没有找到将简单消息发送到特定频道的解决方案。我找到的所有答案都已过时。向特定频道发送消息的最新方式是什么?

我试过了,但没有用:

const channel = <client>.channels.cache.get('<id>');
channel.send('<content>');

1 个答案:

答案 0 :(得分:0)

通道不像语音通道那样具有发送功能。我们必须检查它实际上是一个,使用以下代码您应该可以:

const channel = <client>.channels.cache.get('<id>');
if(channel.isText()){
    channel.send('<content>');
}