在elasticsearch.js客户端搜索api中获取方法而不是Post方法

时间:2017-07-14 07:13:27

标签: post search elasticsearch get elasticsearch.js

有没有办法使用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来做同样的事情呢?

0 个答案:

没有答案