我有使用Papaparse解析的CSV,输出如下:
[
{
"id" : 1,
"title" : "Test1"
},
{
"id" : 2,
"title" : "Test2"
}
]
我需要收到以下内容:
[ //also could be without this
{
"id" : 1,
"title" : "Test1"
} //without the comma
{
"id" : 2,
"title" : "Test2"
}
] //also could be without this
有没有办法直接删除用Papaparse分隔两个记录的逗号,还是必须通过代码来删除?
感谢。