mongoexport csv 不导出时间

mongoexport csv not exporting time

我正在尝试将集合导出到具有以下字段的 csv: _ID 数字 姓名 价格 轮询时间

当我在 RoboMongo 中打开集合或尝试通过 mongoshell 访问集合时,我可以看到轮询时间数据,但是当我将其导出到 CSV 中时,pollingTime 字段变为空白。

这是我的 mongoexport 命令:

mongoexport --db=itemDB --collection=itemprice1 --type=csv --fieldFile=fields.txt --out items.csv

我需要将此数据发送给一些非技术业务人员;知道我是否需要对 fields.txt 进行任何更改。 Fields.txt 是这样的:

_id number name totalPrice pollingTimme

抱歉 - 我在检查我的问题本身后立即发现我在 pollingTime 字段的拼写中犯了一个错误。我仍然想在 Whosebug 上保留问题和答案,以便其他搜索此类问题的人会尝试查看他们的拼写:-)