gpt4 book ai didi

javascript - 循环遍历 2 个数组并通过扭曲查找差异

转载 作者:行者123 更新时间:2023-12-01 00:53:13 25 4
gpt4 key购买 nike

好吧,这对我来说有点难以理解,所以我希望你们中的一个人能够提供帮助。一点背景信息,这是我编写的更新程序,它从 CDN 获取 xml 文件列表,然后将其与旧列表进行比较以查找文件差异,以便我知道哪些文件已过期并需要重新下载。目前我无法找到合适的解决方案。

目前我有 3 个数组。数组 1、数组 2 和 DiffArray。Array1 存储来自 CDN 的 xml 条目..即主服务器Array2 存储我们当前拥有的旧条目..即从属设备Array3存储了两者之间变化的差异。

这是每个数组中的信息示例。请注意,每个新行都被解析为其相应数组的单独索引

数组1:

cbt/ar/816.mp3
2019-06-05T16:40:33.212Z
cbt/ar/817.mp3
2019-06-05T16:40:31.509Z
cbt/ar/818.mp3
2019-04-05T16:40:30.978Z
cbt/ar/819.mp3
2019-04-05T16:40:29.807Z

数组2:

cbt/ar/816.mp3
2019-04-05T16:40:33.212Z
cbt/ar/817.mp3
2019-04-05T16:40:31.509Z
cbt/ar/818.mp3
2019-04-05T16:40:30.978Z
cbt/ar/819.mp3
2019-04-05T16:40:29.807Z

有几点需要注意:1.) 这是文件名及其最后修改日期的列表2.) 如您所见,array1 有一个 816.mp3 和 817.mp3 的新文件

我们的想法是查看并记下哪些文件不同,然后使用更新的版本重新下载这些文件。

这是我目前拥有的,但正如您所看到的,它不是适合这项工作的正确解决方案:

var a = [];
for (var x = 0; x < remoteArray.length; x++) {
a[remoteArray[x]] = true;

}

for (var y = 0; y < localArray.length; y++) {
if (a[localArray[y]]) {
delete a[localArray[y]];
} else {
a[localArray[y]] = true;
}
}

for (var z in a) {
diffArray.push(z);
log.info("::DIFFERENCES::" + z);
}
}

当前代码仅输出实际的文字差异,并不能真正帮助我知道哪个文件不同,以便我可以更新它

最佳答案

首先将数据转换为代表每个文件的对象列表可能会更容易。这不是最高效的方法,但会让事情变得更清晰、更容易维护。

function transformFilesList(array) {
var files = [];
for (var i = 0; i < array.length; i += 2) {
files.push({
name: array[i],
modified: array[i + 1]
});
}
return files;
}

var remote = transformFilesList(remoteArray);
var local = transformFilesList(localArray);
var needsDownload = remote.filter(file => {
let match = local.find(localFile => localFile.name === file.name);
// We need to download if there is no local file with this name or its modification date is older than the remote one
return !match || match.modified < file.modified;
});

console.log('List of files to (re)download', needsDownload);
// Each file in this list will be an object { name, modified }

如果您无法使用Array.prototype.filter等功能或箭头函数(旧浏览器或Node版本),则获取needsDownload的旧替代方法是:

var needsDownload = [];
for (var i = 0; i < remote.length; i++) {
var found;
for (var j = 0; j < local.length; j++) {
if (remote[i].name === local[j].length) {
found = local[j];
break;
}
}
if (!found || found.modified < remote[i].modified) {
needsDownload.push(found);
}
}

关于javascript - 循环遍历 2 个数组并通过扭曲查找差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56796174/

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