duanguane1670 2019-07-17 16:46
浏览 713
已采纳

如何结合bson.M过滤器

I am trying to combine some filters with no success. I am using the mongodb driver for go

// FindOneByID returns an error on fail, otherwise, it sets the {out} by the result.
func FindOneByID(collectionName string, id *primitive.ObjectID, out interface{}, considerArchivedItems bool) error {
    ctx, _ := context.WithTimeout(context.Background(), 2*time.Second)
    var filter bson.M

    if considerArchivedItems {
        filter = bson.M{"_id": id}
    } else {
        filter = bson.M{"$and": bson.A{ bson.M{"_id": id}, bson.M{isArchived: bson.M{"$ne": false}}}}
    }

    return database.Collection(collectionName).FindOne(ctx, filter).Decode(out)
}

Now, I insert an object as archived and trying to get the document. The document is inserted as archived, so I want to consider archived items.

However, when I pass in the else, document can be either archived or not (false or true), I still get it anyway. So it means that my $and doesn’t work..

const (
    databaseNameUnitTests           = "database_name_unit_tests"
    databaseCollectionNameUnitTests = "database_name_unit_tests"
)

type Test struct {
    ID          *primitive.ObjectID `protobuf:"bytes,1,opt,name=id,proto3" json:"_id,omitempty" bson:"_id,omitempty"`
    IsArchived  bool                `protobuf:"varint,2,opt,name=IsArchived,proto3" json:"is_archived,omitempty" bson:"is_archived,omitempty"`
    Description string              `protobuf:"varint,3,opt,name=Description,proto3" json:"description,omitempty" bson:"description,omitempty"`
}

// func
    var item Test
    err := mongodb.FindOneByID(databaseCollectionNameUnitTests, insertedID, &item, false)

The following query from Robo 3T : db.getCollection('database_name_unit_tests').find({$and:[{"_id":ObjectId("5d2e8afeb0e106fbe0d5af21")},{"is_archived": {$ne:false}}]}) this works tho, where am I wrong?

  • 写回答

1条回答 默认 最新

  • doumu4916 2019-07-17 19:18
    关注

    I have a lot of trouble getting bson.A to work with $and statements, try using bson.D instead.

    bson.D{{"$and", []bson.D{
       bson.D{{"_id",id}},
       bson.D{{"isArchived", bson.D{{"$ne", false}}}},
    }}}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 运筹学中在线排序的时间在线排序的在线LPT算法
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧