Commit 1cfc1915 authored by lixiaofang's avatar lixiaofang

新增搜索的画报接口

parent 39739643
...@@ -268,10 +268,16 @@ class GroupUtils(object): ...@@ -268,10 +268,16 @@ class GroupUtils(object):
} }
] ]
q = {}
q["query"] = {
"term": {
"is_online": True
}
}
logging.info("get qqqqqqqq:%s" % q) logging.info("get qqqqqqqq:%s" % q)
es_cli_obj = ESPerform.get_cli() es_cli_obj = ESPerform.get_cli()
result_dict = ESPerform.get_search_results(es_cli_obj, "pictorial", q, offset, size) result_dict = ESPerform.get_search_results(es_cli_obj, "pictorial", q, offset, size)
logging.info("get result_dict:%s" % result_dict)
return result_dict return result_dict
except: except:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment