2

我正在尝试使用游标访问大型结果集,但似乎无法让它们工作(即无限滚动)。到目前为止,这是我的代码,其中 cursor 是一个全局存储的字符串:

var options = {
    type: "users",
    client: myClient,
    qs:{ 
        ql:"location within " + distance + " of " + geo.lat + ", " + geo.lon,
        limit:25,
        cursor:cursor
    }

},        

var entities = new Apigee.Collection( options );

entities.fetch( function ( error, response ) {            
    if (error) {
        //error
    } else {              
        //success
        populateEntityList( response );
    }
});

当我检查网络流量时,我发现光标从未通过。有人可以指出我的解决方案吗?

4

1 回答 1

2

查看源代码(https://github.com/usergrid/usergrid/blob/master/sdks/html5-javascript/usergrid.js ln 2004):

this._cursor = options.cursor

因此,您似乎需要将光标设置为选项的属性,而不是 qs 的子属性:

var options = {
type: "users",
client: myClient,
qs:{ 
    ql:"location within " + distance + " of " + geo.lat + ", " + geo.lon,
    limit:25        
},
cursor:cursor
}
于 2016-03-22T22:22:59.513 回答