9
我使用algolia javascript api檢索我的索引中的所有記錄,使用瀏覽功能,但仍然返回1000條記錄。這裏是我的代碼:Algolia使用Javascript返回最多1000條記錄的瀏覽函數
function load_location_list(){
var client = algoliasearch('ID', 'KEY');
var index_name = "locations_new";
var attribute_list = "*";
var index = client.initIndex(index_name);
index.browse({
"attributesToRetrieve": attribute_list,
}).then(function search_Success(response) {
console.log(response);
});
}
明白了,謝謝 –