在不和谐的聊天中发送 .txt 的全部内容(500 多行)? javascript/discordbot
Send whole content of .txt (500+lines) in discord chat? javascript/discordbot
我想在 discord 聊天中显示超过 500 行的 txt 的全部内容,但 discord 对每条消息的字符数有限制 - 长度必须少于 2000。
我只能使用下面的代码显示前 175 行。我使用了 split[separator][limit]。
如何在聊天中发送剩余的文件内容?
if (message.content === '!list') {
var text = fs.readFileSync('list.txt', 'utf8');
let vvv = text.split(',',175);
message.channel.send(text);
使用传递给 TextChannel.send()
的 split
parameter on MessageOptions
,您可以拆分消息并根据需要指定最大长度。
我想在 discord 聊天中显示超过 500 行的 txt 的全部内容,但 discord 对每条消息的字符数有限制 - 长度必须少于 2000。
我只能使用下面的代码显示前 175 行。我使用了 split[separator][limit]。 如何在聊天中发送剩余的文件内容?
if (message.content === '!list') {
var text = fs.readFileSync('list.txt', 'utf8');
let vvv = text.split(',',175);
message.channel.send(text);
使用传递给 TextChannel.send()
的 split
parameter on MessageOptions
,您可以拆分消息并根据需要指定最大长度。