0

现在我面临另一个问题:当我跑步时

$ 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。该怎么办?提前致谢。

4

1 回答 1

0

我得到了答案....而不是第二个函数我应该使用这个: function nice_format($type, $q){ return $this->call($type . '/_search?pretty=true', array('method' => 'GET', 'content' => $q));; }

于 2012-05-16T05:10:09.367 回答