Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
search_tips
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rank
search_tips
Commits
c2f1481a
Commit
c2f1481a
authored
Jun 28, 2019
by
lixiaofang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
判断类型
parent
150b402a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
auto_tips.py
associate/search/utils/auto_tips.py
+5
-2
No files found.
associate/search/utils/auto_tips.py
View file @
c2f1481a
...
@@ -70,7 +70,8 @@ def get_suggest_tips(query, agile_tag_type):
...
@@ -70,7 +70,8 @@ def get_suggest_tips(query, agile_tag_type):
highlight_name
=
hit_item
[
"_source"
][
"highlight_name"
]
highlight_name
=
hit_item
[
"_source"
][
"highlight_name"
]
ret_list
.
append
(
ret_list
.
append
(
[{
"ori_name"
:
ori_name
,
"results_num"
:
results_num
,
"highlight"
:
highlight_name
}])
[{
"agile_tag_id"
:
agile_tag_id
,
"ori_name"
:
ori_name
,
"results_num"
:
results_num
,
"highlight"
:
highlight_name
}])
else
:
else
:
for
tips_item
in
result_dict
[
"suggest"
][
"tips-suggest"
]:
for
tips_item
in
result_dict
[
"suggest"
][
"tips-suggest"
]:
...
@@ -81,11 +82,13 @@ def get_suggest_tips(query, agile_tag_type):
...
@@ -81,11 +82,13 @@ def get_suggest_tips(query, agile_tag_type):
hit_item
[
"_source"
][
"highlight_name"
]
=
hit_item
[
"_source"
][
"ori_name"
]
.
replace
(
query
,
hit_item
[
"_source"
][
"highlight_name"
]
=
hit_item
[
"_source"
][
"ori_name"
]
.
replace
(
query
,
highlight_marks
)
highlight_marks
)
ori_name
=
hit_item
[
"_source"
][
"ori_name"
]
ori_name
=
hit_item
[
"_source"
][
"ori_name"
]
agile_tag_id
=
hit_item
[
"_source"
][
"agile_tag_id"
]
results_num
=
hit_item
[
"_source"
][
"results_num"
]
results_num
=
hit_item
[
"_source"
][
"results_num"
]
highlight_name
=
hit_item
[
"_source"
][
"highlight_name"
]
highlight_name
=
hit_item
[
"_source"
][
"highlight_name"
]
ret_list
.
append
(
ret_list
.
append
(
[{
"ori_name"
:
ori_name
,
"results_num"
:
results_num
,
"highlight"
:
highlight_name
}])
[{
"agile_tag_id"
:
agile_tag_id
,
"ori_name"
:
ori_name
,
"results_num"
:
results_num
,
"highlight"
:
highlight_name
}])
return
ret_list
return
ret_list
except
:
except
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment