如何在不使用 discord.js 中已弃用的方式 "sendMessage" 的情况下发送消息?
How do I send a message without using the deprecated way "sendMessage" in discord.js?
如何向 discord.js 中的频道发送消息?我知道如何,但 msg.channel.sendMessage
已被弃用。如何在不弃用且不使用 msg.reply
?
的情况下发送消息
message.channel.send("Message Content");
https://discord.js.org/#/docs/main/stable/class/ClientUser?scrollTo=send
你只需要做message.channel.send(“text to send”)
如果你想做一个特定的频道,你可以做以下
Let messageChannel = message.guild.channels.find(“name”, “general”)
messageChannel.send(“your message”)
如何向 discord.js 中的频道发送消息?我知道如何,但 msg.channel.sendMessage
已被弃用。如何在不弃用且不使用 msg.reply
?
message.channel.send("Message Content");
https://discord.js.org/#/docs/main/stable/class/ClientUser?scrollTo=send
你只需要做message.channel.send(“text to send”)
如果你想做一个特定的频道,你可以做以下
Let messageChannel = message.guild.channels.find(“name”, “general”)
messageChannel.send(“your message”)