Commit 57a521e3 authored by 段英荣's avatar 段英荣

modifyg

parent 5c3cdd13
......@@ -78,7 +78,8 @@ def query_tag(query,offset,size):
result_dict = ESPerform.get_search_results(ESPerform.get_cli(),sub_index_name="tag",query_body=q,offset=offset,size=size,is_suggest_request=True)
for tips_item in result_dict["suggest"]["tips-suggest"]:
for hit_item in tips_item["options"]:
if len(hit_item["contexts"])==2:
#if len(hit_item["contexts"])==2:
if hit_item["is_deleted"]==False and hit_item["is_online"]==True:
hitLight = u'<ems>%s</ems>' % query
hit_item["_source"]["highlight"] = hit_item["_source"]["name"].replace(query,hitLight)
ret_list.append(hit_item["_source"])
......
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