如何使用mongo-go-driver过滤字段。 使用findopt.Projection进行了尝试,但没有成功。
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)
最后,我要取消显示字段“ _id”。但是文件没有改变。
答案 0 :(得分:1)
它不适用于您的原因是因为字段dates:[Date]
未导出,因此,其他任何程序包都不能访问它(仅声明程序包)。
您必须使用导出的字段名称(以大写字母开头),例如fields._id
,并使用struct tags将其映射到MongoDB ID
字段,如下所示:
_id
现在要使用投影执行查询:
type fields struct {
ID int `bson:"_id"`
}
请注意,您也可以使用bson.Document
作为投影,您不需要自己的struct类型。例如。以下内容相同:
projection := fields{
ID: 0,
}
result := staCon.collection.FindOne(
nil, filter, options.FindOne().SetProjection(projection)).Decode(s)