现在我的 mongodb 中有几个 JSON,例如:
{
title: "title_1",
content: "content_1",
author: "author_1"
}
我想将这些数据写入具有以下格式的 csv 文件:
title content author
title_1 content_1 author_1
title_2 content_2 author_2
...
我使用了 node-csv-parser 模块。但它总是只写入 csv 文件的第一列,例如:
title content author
title_1,content_1,author_1
title_1,content_1,author_2
...
我应该怎么做才能实现我的目标?请给我看一些例子。任何帮助将不胜感激!