这是我在Elasticsearch中的查询,
{
"query": {
"query_string": {
"default_field": "Comment",
"query": "Comment1"
}
}
}
}
我需要改变"评论1"到一个名为comment的变量。
答案 0 :(得分:0)
它现在正在运作。
comment=somecomment
{
"query": {
"query_string": {
"default_field": "Comment",
"query": 'Comment' + str(tweet['fields']['Comment']).lstrip('\'[u').rstrip(']\'')
}
}
}