Golang MongoDB bson.Mクエリー&変更

4661 ワード

以下のすべての例で、構造は次のように定義されています.
type User struct {
    Id_ bson.ObjectId `bson:"_id"`
    Name string `bson:"name"`
    Age int `bson:"age"`
    JoinedAt time.Time `bson:"joined_at"`
    Interests []string `bson:"interests"
}

1、クエリーfunc (c *Collection) Find(query interface{}) *Queryによってクエリが行われ、返されるQuery structは、様々な条件を追加してフィルタリングすることができる.Query.All()によってすべての結果が得られ、Query.One()によって結果が得られ、データがないか、または数が1つを超えるとOne()がエラーを報告することに注意することができる.
条件はbson.M{key: value}で、keyはstructのフィールド名ではなくMongoDBのフィールド名を使用する必要があります.
1.1、すべてを問い合わせる
var users []User
c.Find(nil).All(&users)

上のコードはすべてのUsersを調べることができます.
1.2、ObjectIdによる照会
id := "5204af979955496907000001"
objectId := bson.ObjectIdHex(id)
user := new(User)
c.Find(bson.M{"_id": objectId}).One(&user)

より簡単な方法は、FindId()メソッドを直接使用することです.
c.FindId(objectId).One(&user)

ここでerrを処理していないことに注意してください.見つからない場合はOne()メソッドでエラーが発生します.
1.3、単一条件クエリー
=($eq) c.Find(bson.M{"name": "Jimmy Kuu"}).All(&users)
!=($ne) c.Find(bson.M{"name": bson.M{"$ne": "Jimmy Kuu"}}).All(&users)
>($gt) c.Find(bson.M{"age": bson.M{"$gt": 32}}).All(&users) c.Find(bson.M{"age": bson.M{"$lt": 32}}).All(&users)
>=($gte) c.Find(bson.M{"age": bson.M{"$gte": 33}}).All(&users)
<=($lte) c.Find(bson.M{"age": bson.M{"$lte": 31}}).All(&users)
in($in) c.Find(bson.M{"name": bson.M{"$in": []string{"Jimmy Kuu", "Tracy Yu"}}}).All(&users)
no in($nin)
同じ$inで、
このキーが含まれているかどうか($exists)c.Find(bson.M{"name": bson.M{"$exists": true}}).All(&users)
クエリキー値nullのフィールドc.Find(bson.M{"name": bson.M{"$in":[]interface{}{null}, "$exists": true}}).All(&users)
ファジイクエリ($regex)c.Find(bson.M{"name": bson.M{"$regex": "^[0-9]+"}}).All(&users)
$size
クエリキー値がsizeである配列c.Find(bson.M{"Interests": bson.M{"$size": 3}}).All(&users)Interests配列の長さ3をクエリーするすべての人です
$all
クエリー配列に一致するすべての値が含まれています(順序を問わず、含まれているかどうかのみを参照).
c.Find(bson.M{"Interests": bson.M{"$all": []string{"11","22","33"}}}).All(&users)

Interestsに11,22,33が含まれているすべての人を検索します
配列が1つしかない場合
c.Find(bson.M{"Interests": bson.M{"$all": []string{"11"}}}).All(&users)
c.Find(bson.M{"Interests": "11"}).All(&users)

以上の結果は一致している
key.index配列をクエリーして位置を指定する場合
c.Find(bson.M{"Interests.2": "33"}).All(&users)

以上、Interestsの2番目の要素が「33」であることをクエリーしたすべての人です.
1.4、多条件クエリー
and($and) c.Find(bson.M{"name": "Jimmy Kuu", "age": 33}).All(&users)
or($or) c.Find(bson.M{"$or": []bson.M{bson.M{"name": "Jimmy Kuu"}, bson.M{"age": 31}}}).All(&users)
2、修正
修正操作はfunc(*Collection)Updateで行います.func (c *Collection) Update(selector interface{}, change interface{}) error
注意単一または複数のフィールドを変更するには、$setでシンボルを操作する必要があります.そうしないと、セットが置き換えられます.
2.1、($set)
フィールドの値の変更
c.Update(
bson.M{"_id": bson.ObjectIdHex("5204af979955496907000001")},
bson.M{"$set": bson.M{ "name": "Jimmy Gu", "age": 34, }}
)

2.2、inc($inc)
フィールドの増加
c.Update(
bson.M{"_id": bson.ObjectIdHex("5204af979955496907000001")},
bson.M{"$inc": bson.M{ "age": -1, }}
)

2.3、push($push)
配列から要素を追加
c.Update(
bson.M{"_id": bson.ObjectIdHex("5204af979955496907000001")},
bson.M{"$push": bson.M{ "interests": "Golang", }}
)

2.4、pull($pull)
配列から要素を削除
c.Update(
bson.M{"_id": bson.ObjectIdHex("5204af979955496907000001")},
bson.M{"$pull": bson.M{ "interests": "Golang", }}
)

2.5、削除c.Remove(bson.M{"name": "Jimmy Kuu"})
ここでもマルチ条件をサポートし、マルチ条件クエリーを参照します.
リンクから:https://www.jianshu.com/p/b63e5cfa4ce5