现在我面临另一个问题:当我跑步时
$ curl -X GET 'http://localhost:9200/sample/new/_search?pretty=true' -d '{ fields:"price_incl_tax","product_id"],query:{range:{price_incl_tax:{gte:1000,lte:1500}}} }'
在 cygwin 中,它可以工作并给出正确的结果。但是当我
"http://localhost:9200/sample/new/_search?pretty=true -d ' { fields:["price_incl_tax","product_id"],query:{range:{price_incl_tax:{gte:1000,lte:1500}}} }'"
在浏览器中打开链接时,我得到了错误的答案。我得到20(everything) results
而我应该得到only 2
。该怎么办?提前致谢。