我试图解析此文件的变体(而不是使用制表符作为定界符,而是使用逗号作为定界符的文件)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);
}
});
最佳答案
因为启用了标题行,所以没有数据,因此输入的第一行是标题行(在meta
属性中查找在标题行中找到的字段列表)。
您仅提供了一行输入,实际上是字符串"GWAS.csv"
,因此没有数据。
如果要解析文件,则需要pass in a File object from the DOM或specify download: true
in the config进行Papa Parse解析,以将输入字符串解释为从中下载输入文件的URL。
关于javascript - PapaParse无法正常工作(返回空数组),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26539431/