8

在职的:

 .\mongoexport.exe --db mydb --collection slideproof_user_event_date_count --csv --out 
events.csv --fields '_id,first_day'
 .\mongoexport.exe --db mydb --collection slideproof_user_event_date_count --out 
events.json --fields '_id._p,first_day'

不工作(只有第一个字段/列有内容)写,:

 .\mongoexport.exe --db mydb --collection slideproof_user_event_date_count --csv --out 
events.csv --fields '_id._p, first_day'

如何使用子文档字段为 .csv 启用正确的输出?

4

1 回答 1

20

解决方案是避免 --fields 参数中的空格:

这有效:

--fields '_id._p,value.count'

这不会:

--fields '_id._p, value.count'
于 2013-09-22T18:36:37.337 回答