• must : 各个条件都必须满足,即各条件是and的关系


    搜索 pro_title字段 同时包含 “星飞帆A2” 和 “128g” 这两个关键字,是and关系,

    如果pro_title只包含 “星飞帆A2” 是不会被查询出来的

    1. GET rainbow_product_dev_001/_search
    2. {
    3. "query": {
    4. "bool": {
    5. "must": [
    6. { "match": { "pro_title": "星飞帆A2" }},
    7. { "match": { "pro_title": "128g" }}
    8. ]
    9. }
    10. }
    11. }