gpt4 book ai didi

javascript - Elasticsearch - 如何使 JavaScript 客户端响应超过 10 项

转载 作者:行者123 更新时间:2023-11-28 15:00:23 24 4
gpt4 key购买 nike

我正在使用JavaScript client对于 Elasticsearch。我的请求有问题:

client.search({
index: applicationIndex,
type: applicationType,
body: {
query: {
match_all : {}
}
}
})
.then(function(res){
return {res: res};
});

返回的商品数量不超过 10 件。我怎样才能全部退回(实际上有21件商品)?谢谢

最佳答案

在文档中,它指出 size 默认为 10。将 size 添加到您的搜索对象并将其值设置为 21

试试这个

client.search({
index: applicationIndex,
type: applicationType,
size: 21,
body: {
query: {
match_all : {}
}
}
})
.then(function(res){
return {res: res};
});

关于javascript - Elasticsearch - 如何使 JavaScript 客户端响应超过 10 项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41198605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com