ElasticSearch Query传递python动态变量

时间:2018-04-27 06:28:03

标签: python-3.x elasticsearch

res = es.search(index="resume", body={"query": {"match" : {"resume_file_text" : '"+key+"'}}})

如何传递变量'键'它保存用户在UI处给出的值并动态变化吗?

1 个答案:

答案 0 :(得分:2)

正文是一个哈希而不是一个字符串(所以不需要连接任何东西)。所以你可以这样做:

res = es.search(index="resume", body={"query": {"match" : {"resume_file_text" : key}}})