gpt4 book ai didi

javascript - Discord.js:随机化存储为 json 文件的数组内容

转载 作者:太空宇宙 更新时间:2023-11-04 02:45:51 25 4
gpt4 key购买 nike

我正在开发一个小型 Discord 机器人,试图自学一些 js,但我遇到了一些我无法真正解决或找到答案的问题。

我有一个命令,让机器人从存储在单独的 json 文件中的数组中随机发布报价,并且这按预期工作。

var config = require("./settings.json");
var quotes = config.quotes;

function randomQuote() {
return quotes[Math.floor(Math.random() * quotes.length)];
};

if(message.content.toLowerCase() === prefix + "quote") {
message.channel.send(randomQuote());
}

我现在正在尝试做类似的事情,只不过数组不是 json 文件的一部分,而是 json 文件。本质上,用户可以告诉机器人保存特定消息,它会获取消息作者和内容并将它们作为条目添加到数组中。然后它应该执行与 quote 函数相同的操作,随机化数组中的条目,然后将其打印到聊天中。

var mess;

let saveMess = JSON.parse(fs.readFileSync("./saveMess.json", "utf8"));

function randomMess() {
return saveMess[Math.floor(Math.random() * saveMess.length)];
};

if(message.content.toLowerCase().startsWith(prefix + "saveMess")) {
mess = message.author + " told me the following:\n" + message.content;
fs.readFile("./saveMess.json", function (err, data) {
var json = JSON.parse(data)
json.push(mess)
fs.writeFile("./saveMess.json", JSON.stringify(json), (err) => {
if (err) console.error(err)
});
})
}

if(message.content.toLowerCase() === prefix + "printMess") {
message.channel.send(randomMess());
}

根据我的测试,我知道它被正确存储在数组中,并要求正确打印整个文件(即 message.channel.send(saveMess))显示所有已保存的条目;但是,当尝试执行相同的随机化功能时,我收到错误“无法发送空消息”。显然,我缺少一些东西,即设置 json 文件中包含的数组与 json 文件的数组分开;有谁对我如何使其按预期工作有任何想法吗?

为了澄清起见,这是两个 json 文件的外观,以演示我正在谈论的差异:

//settings.json - the quote file

{ "token" : "BotTokenHere",
"prefix" : "|",
"quotes" : [
"Quote 1",
"Quote 2",
"Quote 3"
]
}
<小时/>
//savemess.json - the saved messages file

[
"<@user1> told me the following:\n|saveMess test",
"<@user2> told me the following:\n|saveMess test2",
"<@user3> told me the following:\n|saveMess test3"
]

最佳答案

根据 json.org 上的 JSON 指南,json文件必须是对象,不能是数组。 JSON.parse 可能不会抛出错误,而是返回空数组/对象。您应该坚持使用原始的 settings.json

关于javascript - Discord.js:随机化存储为 json 文件的数组内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49143259/

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