我在 nodejs 脚本中使用此代码将一些元素推送到数组中,用于查询器的list
问题类型。
for (let [index, torrent] of results.entries()) {
if (torrent.seeds > 0 && torrent.peers > 0) {
filesList.push(`${torrent.title} s:${torrent.seeds} p:${torrent.peers}`);
filesDetails.push(torrent);
} else {
results.splice(index, 1);
}
}
如您所见,我在文件名之后添加了s:value
和 ,p:value
以告知用户文件的种子和对等方。当用户从列表中选择一个文件时,我正在搜索对象数组以找到该文件并将其返回。如果我没有在文件名中添加s:value
和p:value
,一切都按预期工作,但由于我需要提供这些信息,如何在循环数组之前将它们从文件名中删除?
这是我目前用来在对象数组中找到正确文件的代码
const selectedTorrent = [];
for (let f of filesDetails) {
if (f.title === availableTorrents.selected) {
selectedTorrent.push(f);
}
}