在 setLimit() 方法中,我应该保留什么来获取数据中的所有记录包 - 使用:go.mongodb.org/mongo-driver/bsongo.mongodb.org/mongo-driver/mongogo.mongodb.org/mongo-driver/mongo/optionsfindOption := options.Find()findOption.SetLimit(?)var res1 []Personcur, err := collection.Find(context.TODO(), bson.D{}, findOption)if err != nil { log.Fatal(err)}for cur.Next(context.TODO()) { var elem Person err := cur.Decode(&elem) if err != nil { log.Fatal(err) } res1 = append(res1, elem)}if err := cur.Err(); err != nil { log.Fatal(err)}// Close the cursor once finishedcur.Close(context.TODO())fmt.Printf("Found multiple documents (array of pointers): %+v\n", res1)
1 回答
蝴蝶刀刀
TA贡献1801条经验 获得超8个赞
FindOptions.SetLimit()
如果您不想限制结果的数量,最简单的方法是不调用。如果你没有通过FindOptions
,或者你通过了一个你没有设置限制的地方,默认情况下,结果是不受限制的。
如果您有一个FindOptions
先前已设置限制的值,您可以设置一个限制0
以“撤消”限制。
// The maximum number of documents to return. The default value is 0, which means that all documents matching the
// filter will be returned. A negative limit specifies that the resulting documents should be returned in a single
// batch. The default value is 0.
Limit *int64
- 1 回答
- 0 关注
- 437 浏览
添加回答
举报
0/150
提交
取消