使用python在Elasticsearch中定义变量字段

时间:2014-12-05 00:02:59

标签: python elasticsearch

这是我在Elasticsearch中的查询,

{
    "query": {
        "query_string": {
            "default_field": "Comment",
            "query": "Comment1"
         }
     }
    }
 } 

我需要改变"评论1"到一个名为comment的变量。

1 个答案:

答案 0 :(得分:0)

它现在正在运作。

comment=somecomment
{
     "query": {
        "query_string": {
            "default_field": "Comment",
            "query": 'Comment' + str(tweet['fields']['Comment']).lstrip('\'[u').rstrip(']\'')
         }
     }
    }