golang-mongo或查询

遇到一个或关系查询,度娘了下,mongo语句很容易实现:db.RechargeList.find({"IsRead":{$gt:0},"$or":[{"Account":"lyp"},{"DoneeObjId":"59ddcfb45208dc2c0cfb6ff3"}]}),但是在golang里还是有点小麻烦:

bson.M{"IsRead": bson.M{"$gt": 0}, "$or": []bson.M{bson.M{"Account": this.Account},bson.M{"DoneeObjId": this.ObjID.Hex()}}}

转载于:https://www.cnblogs.com/ChengShuKaiShi/p/7887096.html

你可能感兴趣的:(golang-mongo或查询)