如何让 Discord.js 机器人读取和使用已在聊天中发送的图像 url
How to make a Discord.js bot read and use image urls which have been sent in chat
我正在制作一个机器人,它将检查消息是否 包含 图像 link 匹配预设图像列表,因此它会做出相应的响应!
例如
User1: This is an image: discordapp.com/attachments/test123test123
Bot: That image is of blank!
如果有人告诉我获取图片网址的功能,那就太好了!如果有人可以通过根据预设列表检查 URL 来告诉我如何应用它,那将更有用,预设列表将命名图像的内容!
干杯!
EZ
message.channel.send(message.attachments.first().url)
我正在制作一个机器人,它将检查消息是否 包含 图像 link 匹配预设图像列表,因此它会做出相应的响应!
例如
User1: This is an image: discordapp.com/attachments/test123test123
Bot: That image is of blank!
如果有人告诉我获取图片网址的功能,那就太好了!如果有人可以通过根据预设列表检查 URL 来告诉我如何应用它,那将更有用,预设列表将命名图像的内容! 干杯!
EZ
message.channel.send(message.attachments.first().url)