Golang与couchbase集成问题

Golang与couchbase集成问题,go,couchbase,Go,Couchbase,我正在使用golang和couchbase集成组件go couchbase。它可以连接couchbase并检索数据。然而,我有一个问题,发送启动键和跳过值和限制值与此API。因为我自己找不到任何功能 url:-github.com/couchbaselabs/go couchbase 请告诉我有什么方法可以将这些值发送到couchbase并检索数据?启动键只提到一次,作为: 我假设skipone(在“”中提到)只是要添加到params-map[string]接口{}的另一个参数 // View

我正在使用golang和couchbase集成组件go couchbase。它可以连接couchbase并检索数据。然而,我有一个问题,发送启动键和跳过值和限制值与此API。因为我自己找不到任何功能

url:-
github.com/couchbaselabs/go couchbase


请告诉我有什么方法可以将这些值发送到couchbase并检索数据?

启动键只提到一次,作为:

我假设
skip
one(在“”中提到)只是要添加到
params-map[string]接口{}
的另一个参数

// View executes a view.
//
// The ddoc parameter is just the bare name of your design doc without
// the "_design/" prefix.
//
// Parameters are string keys with values that correspond to couchbase
// view parameters. Primitive should work fairly naturally (booleans,
// ints, strings, etc...) and other values will attempt to be JSON
// marshaled (useful for array indexing on on view keys, for example).
//
// Example:
//
// res, err := couchbase.View("myddoc", "myview", map[string]interface{}{
// "group_level": 2,
// "start_key": []interface{}{"thing"},
// "end_key": []interface{}{"thing", map[string]string{}},
// "stale": false,
// })
func (b *Bucket) View(ddoc, name string, params map[string]interface{}) (ViewResult, error) {