如何将图像保存到discord.js中的文件

时间:2019-04-24 19:50:47

标签: javascript node.js fs discord.js

我正在尝试将图像上传到聊天中,并让不和谐的bot将图像保存在磁盘上

我对javascript还是不太了解,但这就是我所拥有的。 我想在不使用外部库的情况下解决此问题

message.attachments.forEach(a => {
   fs.writeFileSync(`./${a.name}`, a.file);
});
//this creates an undefined file

console.log(message.attachments.length);
//this prints undefined

const file = fs.createWriteStream("file.jpg");
const request = http.get(message.attachments[0].url, (response) => {
   response.pipe(file);
});
//this creates an empty file.jpg

0 个答案:

没有答案