我找不到 jquery-csv 的完整设置列表。我的 csv 文件的结构如下:
id;idProduction;WorkPlace;DateScan;idUser;Line
2626053;4664738;50;2017-05-02 08:08:07;748;1
2626054;4664741;50;2017-05-02 08:08:21;748;1
2626055;4664736;50;2017-05-02 08:08:43;748;1
目标是在 JS 中获取任何元素,例如:array[0]['id']; 或数组[0][0];
我曾尝试使用:
var data = $.csv.toArrays("ProductionStates.csv", {"separator" : ";"});
console.log(data[0]['id']);
结果是
"Uncaught TypeError: Cannot read property 'id' of undefined"
附加信息:
console.log(`data here >${data}< and type of data here >${typeof(data)}<`);
结果:
data here >< and type of data here >object<