カーソルを使用して大きな結果セットにアクセスしようとしていますが、機能しないようです (エンドレス スクロールなど)。これまでのところ、カーソルがグローバルに保存される文字列である私のコードは次のとおりです。
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 );
}
});
ネットワーク トラフィックを調べると、カーソルが渡されていないことがわかります。誰かが私に解決策を教えてもらえますか?