我正在尝试使用游标访问大型结果集,但似乎无法让它们工作(即无限滚动)。到目前为止,这是我的代码,其中 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 );
}
});
当我检查网络流量时,我发现光标从未通过。有人可以指出我的解决方案吗?