基本上我正在制作这个歌词命令,很多时候,大多数歌曲的歌词中的字符数量超过2000个字符,这是通过了Discord的限制。我想知道如何让它一次发送2条不同的消息。
我想知道如何让它在一条消息中发送前2000个字符,然后在第二条消息中发送剩余的字符。
这是我的代码:
if (message.content.startsWith(config.prefix + `lyrics`)) {
var artistTitle = getArtistTitle(serverQueue.songs[0].title)
console.log(artistTitle)
lyrics.get(artistTitle[0], artistTitle[1], function(err, res){
if(err){
return message.channel.send({embed: {
title: `:x: | Oops! I have encountered an error!`,
description: err,
color: 0xDE2E43
}})
console.log(err);
}
else{
return message.channel.send({embed: {
title: `Lyrics for ${serverQueue.songs[0].title}. Requested by ${message.author.username}`,
description: res,
footer: {
icon_url: serverQueue.songs[0].thumbnail,
text: `Powered by lyrics.wikia.com`
}
}})
}
});
}
答案 0 :(得分:1)
您可以使用子字符串来剪切消息:
for(let i = 0; i < str.length; i += 2000) {
const toSend = str.substring(i, Math.min(str.length, i + 2000));
sendMessage(toSend);
}