遇到一個或關系查詢,度娘了下,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()}}}
