MongoDB将聚合展开查询的结果导出为CSV?

时间:2017-08-15 09:12:33

标签: json mongodb csv robo3t database

我收到错误验证设置:查询无效JSON:json:无法将字符串解组为map类型的Go值[string] interface {}'尝试将我的查询输出到CSV时。

我的查询是:      'dev_experts:{$aggregate([{$unwind:"$expertise"}])}'

我如何" unmarshal"那?我通过Robomongo运行查询,我可以看到我要导出的结果,但我无法通过那里导出它们。

提前致谢。

1 个答案:

答案 0 :(得分:0)

也许您应该尝试这种查询语法,尽管我不是Robomongo专家;)

db.dev_experts.aggregate([{$unwind:"$expertise"}]);

cf https://docs.mongodb.com/manual/reference/operator/aggregation/unwind/获取更多信息。