csv中以'#'开头的行不会被忽略。 标题选项为 true 。基本上,我只是想在csv上添加一些信息,这些信息在解析时会被忽略。 The screenshot of the csv trying to import is here。 这是代码一览:
Papa.parse(self.fileToImport, {
header: true,
comments: '#',
dynamicTyping: true,
skipEmptyLines: true,
complete: function (results) {
},
error: function (err) {
}
})
答案 0 :(得分:0)
有一种方法可以使用 beforeFirstChunk 方法。可以修改该块以跳过第一行。
文档: https://www.papaparse.com/docs
Papa.parse(self.fileToImport, {
header: true,
dynamicTyping: true,
skipEmptyLines: true,
beforeFirstChunk: function (chunk) {
// modify the chunk as desired here
},
complete: function (results) {
},
error: function (err) {
}
})