【发布时间】:2018-11-13 12:00:47
【问题描述】:
我现在遇到的问题是图像没有从我嵌入的 URL 中显示出来。现在通常对于 Discord,当您发送图像链接时,它会显示如下: What usually happens when you send an image link
现在,我尝试嵌入图片链接。这很好地嵌入了图像 URL,但是,现在图像没有在图像 URL 下方弹出,但嵌入工作:The embedded image URL
这是我当前的代码:
} else if(message.content == '/memes' || message.content =='/meme') {
message.channel.sendMessage({embed: {
color: 3447003,
description: memes[Math.floor(Math.random()*75)]
}});
//message.reply(memes[Math.floor(Math.random()*75)])
}
【问题讨论】:
标签: javascript hyperlink embed discord discord.js