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

私は答えを得ました....私はこれを使用する必要がある2番目の関数の代わりに: function nice_format($type, $q){ return $this->call($type . '/_search?pretty=true', array('method' => 'GET', 'content' => $q));; }

于 2012-05-16T05:10:09.367 に答える