douyi2798 2018-11-02 14:08
浏览 245
已采纳

如何使用官方的mongo-go-driver驱动程序过滤mongo文档中的字段

How can I filter fields with the mongo-go-driver. Tried it with findopt.Projection but no success.

type fields struct {
    _id int16
}

s := bson.NewDocument()
filter := bson.NewDocument(bson.EC.ObjectID("_id", starterId))

var opts []findopt.One
opts = append(opts, findopt.Projection(fields{
    _id: 0,
}))

staCon.collection.FindOne(nil, filter, opts...).Decode(s)

In the end, I want to suppress the field "_id". But the documents didn't change.

  • 写回答

1条回答 默认 最新

  • duanchou6534 2018-11-05 13:54
    关注

    The reason why it doesn't work for you is because the field fields._id is unexported, and as such, no other package can access it (only the declaring package).

    You must use a field name that is exported (starts with an uppercase latter), e.g. ID, and use struct tags to map it to the MongoDB _id field like this:

    type fields struct {
        ID int `bson:"_id"`
    }
    

    And now to perform a query using a projection:

    projection := fields{
        ID: 0,
    }
    result := staCon.collection.FindOne(
        nil, filter, options.FindOne().SetProjection(projection)).Decode(s)
    

    Note that you may also use a bson.Document as the projection, you don't need your own struct type. E.g. the following does the same:

    projection := bson.NewDocument(
        bson.EC.Int32("_id", 0),
    )
    result := staCon.collection.FindOne(
        nil, filter, options.FindOne().SetProjection(projection)).Decode(s)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?