有没有办法使用GET而不是POST方法搜索弹性,因为我可以在curl中执行此操作
curl -XGET 'localhost:9200/tvseries/internindex/_search?size=5&from=5&pretty' -H 'Content-Type: application/json' -d'
{
"query": {
"bool": {
"should": [
{ "match": { "showname": "Family guy" }},
{ "match": { "content": "gigitty" }}
]
}
}
}
'
并且它有效,我怎么能使用elasticsearch.js的搜索API来做同样的事情呢?