我正在尝试解析此文件的变体(而不是使用制表符作为分隔符,我使用的是逗号作为分隔符的文件)https://github.com/materechm/Schizophrenia/blob/master/GWAS.txt
这是我的代码,但我得到一个空数组并且没有错误
var csv = Papa.parse('GWAS.csv', {
delimiter: ",",
header: true,
comments: false,
complete: function(results) {
console.log(results);
}
});