gpt4 book ai didi

javascript - Discord bot 无法从附件加载数据

转载 作者:行者123 更新时间:2023-11-30 06:24:39 25 4
gpt4 key购买 nike

我想从消息中加载数据。我在网上看了看,发现:

if (message.attachments) {

let attachment = message.attachments.first;
download(attachment.url);

var myData = fs.readFileSync(attachment.filename);
data = JSON.parse(myData);

}

但是 download() 不存在。我没有找到其他方法来做到这一点。

我该怎么办?

最佳答案

我不知道你在哪里找到那段代码,但它可能有点过时了。

您可以使用 MessageAttachment.attachment结合fs.readFile()fs.readFileSync()

你可以试试这样写:

if (message.attachments) {
let file = message.attachments.first(); //this is the attchment you choose to use
let data = fs.readFileSync(file.attachment); //this reads the attachment & returns the data
//then you can parse it or use it however you want
}

如果有什么不对,或者您有任何进一步的问题,请告诉我

关于javascript - Discord bot 无法从附件加载数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51221429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com