如何在基于URI的查询中指定AND操作?我正在寻找类似的东西:
http://localhost:9200/_search?q="profiletype:student AND username:s*"
根据文档,它应该按您描述的那样工作。参见http://www.elasticsearch.org/guide/reference/query- dsl/query-string- query.html
也就是说,您还可以使用以下内容:
http://localhost:9200/_search?q="+profiletype:student +username:s*"