res = es.search(index="resume", body={"query": {"match" : {"resume_file_text" : '"+key+"'}}})
如何传递变量'键'它保存用户在UI处给出的值并动态变化吗?
答案 0 :(得分:2)
正文是一个哈希而不是一个字符串(所以不需要连接任何东西)。所以你可以这样做:
res = es.search(index="resume", body={"query": {"match" : {"resume_file_text" : key}}})