我正在我的 Symfony 2.3 项目中集成 FOSElasticaBundle,我需要按其价格属性对结果进行排序。
这是我的代码:
$finder = $this->container->get('fos_elastica.finder.website.product');
$fieldTerms = new \Elastica\Query\Terms();
$fieldTerms->setTerms('taxon_ids', $taxon_ids_array);
$boolQuery->addMust($fieldTerms);
$resultSet = $finder->find($boolQuery);
我怎么能做到这一点?
谢谢