我有一个这样的csv:
this is the first column, this is the 2nd,
firstVal, secondVal
david, baseball
jon, soccer
我想将其转换为:
[{firstVal:david, secondVal:baseball},{firstVal:jon,secondVal:soccer}]
我的 csv 中的第一行是元数据(基本上只是对实际列标题的描述——firstVal 和 secondVal),我不想包含在 json 中。我试过了:
csvtojson({noheader: true}).fromFile(csvFilePath)//...
但这似乎不起作用。如何在忽略第一行的情况下进行此转换?