问题
If we have a CSV file like this:
`firstName, lastName
Jim, Carrey
Stephen, Colbert`
Papaparse will output the dynamically typed result like this:
{firstName: 'Jim',
' lastName': '30000'}
In order to just get {firstName: 'Jim', lastName...}
PapaParse 5.0.0 has a transformHeaders
option, but there's no documentation on how to achieve this result yet.
Anyone have a transformHeader
snippet that does this?
回答1:
This ended up doing the trick:
const config = {
delimiter: ",",
header: true,
dynamicTyping: true,
transformHeader:function(h) {
return h.trim();
}
};
来源:https://stackoverflow.com/questions/56470745/using-papaparse-transformheader-to-remove-whitespace-from-headers