Fos elastica过滤器结果带有数组“ record id's”

时间:2019-05-08 09:10:59

标签: symfony elasticsearch foselasticabundle

我有一个包含许多记录的SQL表。当我搜索时,我不想使用所有结果,但是我希望它包含在我想要的ID中。

我为此添加了“ term”,并为addMust添加了“ boolQuery”。但是没有结果。我添加的是“ addShould,而无需搜索我的条件。

// only the results of the ids in the data_ids array.
$finder = $this->container->get('fos_elastica.finder.xxxxx');
$boolQuery = new \Elastica\Query\BoolQuery();

$fieldQuery = new \Elastica\Query\Match();
$fieldQuery->setFieldQuery('name', $searchKey);
$fieldQuery->setFieldFuzziness('name', 1);
$boolQuery->addShould($fieldQuery);

$termQuery = new \Elastica\Query\Term();
$termQuery->setTerm('id', $data_ids);
$boolQuery->addShould($termQuery); // Without my criteria
//$boolQuery->addMust($termQuery); // No result

$vars = $finder->find($boolQuery, $limit);

样本!!!

// seaching id's.
$data_ids = [1,2,3,12,13,16,17,24,65,234,657,45];

如果我使用addMust; 始终输出;

[]

如果我使用addShould; 样本输出;

[
        {
            "station": {
                "id": 8,
                "name": "ETC"
            },
            "area": {
                "id": 1,
                "name": "ETC"
            },
            "city": {
                "id": 2,
                "name": "Istanbul"
            },
            "district": {
                "id": 2,
                "name": "Besiktas"
            }
        }
    ]

但电台id 8不在$data_ids数组中。

我该如何解决这个问题。

1 个答案:

答案 0 :(得分:1)

尝试一下:

$termsQuery = new \Elastica\Query\Term();
$termsQuery->setTerms('ids', $data_ids); // note: $data_ids is an array
$boolQuery->addMust($termQuery);