Elasticsearch 安装ik扩展 (根据你自己Es使用版本,安装对应的ik分词器) mapping { "id": { "type" : "integer", "index":"not_analyzed" }, "title":{ "type" : "string", "index" : "analyzed", "analyzer" : "ik_smart" } } ik_smart or ik_max_word 自行尝试 搜索 GET /_search { "query": { "match" : { "title" : "美国 黑人" } } }