我一直在为discord.js机器人处理此队列。有人做的事!smm提交,然后将其添加到JSON文件中,如下所示:
"1": "id",
"2": "anotherid"
然后,如果某人要执行!smm删除操作,则会删除列表中的第一项。由于某种原因,如果我这样做,它将保留相同数量的对象,但是它将复制最后一个对象,所以如果我的JSON文件是
"1": "id",
"2": "anotherid",
"3": "thisid"
到最后
"1": "anotherid",
"2": "thisid",
"3": "thisid"
如果您有更好的队列方法,请告诉我,否则这是我的命令及其子命令代码。安装了editJsonFile api,因此当您看到“ queue.set(” foo“,” foobar“)” foo是对象名称,foobar是对象的值:
if(cmd === `${prefix}smm`){
let type = args[0];
let a = args[1];
if(type === "submit"){
message.delete()
if(a){
if(a.charAt(4) === "-" && a.charAt(9) === "-" && a.charAt(14) === "-"){
for(x = 1; x < 10000; x++){
if(!file[x]){
console.log(x)
queue.set(`${x}`, `${a}`)
return;
}
}
}else{
message.author.send("Sorry but you typed in the ID wrong. Make sure you include these '-' to separate it.")
}
}
}
if(type === "delete"){
message.delete()
let arr = [];
for(x = 1; x < 10000; x++){
if(file[x]){
arr.push(file[x])
}else{
let arrr = arr.slice(1)
console.log(arrr)
fs.writeFile(`./queue.json`, '{\n \n}', (err) => {
if (err) {
console.error(err);
return;
};
});
setTimeout(function(){
console.log(arrr.length)
for(e = 0; e < arrr.length; e++){
console.log(`e: ${e} || arrr.length: ${arrr.length}`)
queue.set(`${e+1}`, `${arrr[e]}`)
}
return;
}, 3000)
return;
}
}
}
}
答案 0 :(得分:1)
我想我已经找到您的问题了:在第32行,您正在使用fs.writeFile
“重置”文件。由于文件是由editJsonFile缓存的,因此重写文件不会影响您的队列变量,并且当您设置另一个值时,程序包会在内部重写以前缓存的值。
为避免这种情况,您可以在调用fs.writeFile()
(或fs.writeFileSync()
)之后重置变量。这是我用RunKit测试过的一个小例子:
var editJsonFile = require("edit-json-file");
var fs = require("fs");
var file = editJsonFile(`./queue.json`); //load queue.json
file.set("1", "foo"); //set your values
file.set("2", "bar");
console.log(file.get()); //this logs "{1: "foo", 2: "bar"}"
fs.writeFileSync(`./queue.json`, '{\n \n}'); //reset queue.json
file = editJsonFile(`./queue.json`); //reload the file <---- this is the most important one
file.set("3", "test"); //set your new variables
console.log(file.get()); //this logs "{3: "test"}"