我正在尝试使用 Javascript 在 CSV 文件中查找一个值并返回它的对应值(基本上是 VLOOKUP 在 Excel 中的作用)
我已经能够单独遵循一些将 CSV 数据拉入数组的示例,并且我已经看到了一些在数组中查找数据的示例 - 但对于我的生活,我无法弄清楚如何让两者都工作.
例如,CSV 文件stations.csv 具有以下数据:
mac,name
69167f276e9g,LINE1
69167f276e9f,LINE2
我想要做的是从 CSV 中查找 'mac' 值,并返回相应的 'name' 值。
因此,如果我寻找“69167f276e9f”,我想取回 LINE2 的值。
[编辑:使用 MauriceNino 的建议添加我尝试过的代码 - 但出现错误Uncaught TypeError: Cannot read property '1' of undefined at the line 'return result[1];' ]:
$.ajax('stations.csv').done(function(data) {
const lookup = (arr, mac) => {
let twoDimArr = dataArr.map(el => el.split(',')); // map it to array of arrays of strings (data)
let result = twoDimArr.filter(el => el[0] == mac)[0]; // Get the first element where the mac matches the first element in the array
return result[1]; // Return the second element in the array
};
let dataArr = data.split('\n');
dataArr .shift(); // Remove the first array element (The header)
let resultMac = lookup(dataArr, "69167f276e9f");
console.log(resultMac);
})