1

我有一个包含以下文档的 MongoDB 集合。有些文档有 1 个字段,有些有 2 个。我只对导出具有“productid”字段的文档感兴趣。我正在使用下面的查询,但收到错误消息:“无法将字符串解组为 map[string] interface {} 类型的 GO 值”。

该文档如下所示:

[
  {
     "id" : 1,
  },
  {
     "id" : 2,
  },
  {
     "id" : 3
     "Product Info":
      {
         "ProductName" : "test"
      }
  }
]

我使用的 MognoExport 命令如下: mongoexport --username x --password x --host x --db mydb --collection mycol --query '{"Product Info.ProductName":{"$exists":true}}' --type=csv --fields id,productid --out "c:\myfile.csv"

4

1 回答 1

2

我通过将脚本更新为:

mongoexport --username x --password x --host x --db mydb --collection mycol --query "{ 'Product Info.ProductName':{$exists:true}}" --type=csv --fields id,productid --out "c:\myfile.csv"
于 2016-04-06T22:14:20.590 回答