|
@@ -1964,27 +1964,27 @@ func SearchDataSourceIndex(indexName, keyword string, source, subSource int, cla
|
|
|
})
|
|
|
|
|
|
// 指标编码/名称
|
|
|
- //shouldMap := make(map[string]interface{}, 0)
|
|
|
+ shouldMap := make(map[string]interface{}, 0)
|
|
|
if keyword != "" {
|
|
|
- //shouldMap["should"] = []interface{}{
|
|
|
- // map[string]interface{}{
|
|
|
- // "match": map[string]interface{}{
|
|
|
- // "IndexCode": keyword,
|
|
|
- // },
|
|
|
- // },
|
|
|
- // map[string]interface{}{
|
|
|
- // "match": map[string]interface{}{
|
|
|
- // "IndexName": keyword,
|
|
|
- // },
|
|
|
- // },
|
|
|
- //}
|
|
|
- queryFields := []string{"IndexName.keyword", "IndexName.ik", "IndexName.ngram", "IndexCode.keyword", "IndexCode.ngram"}
|
|
|
- mustMap = append(mustMap, map[string]interface{}{
|
|
|
- "multi_match": map[string]interface{}{
|
|
|
- "query": keyword,
|
|
|
- "fields": queryFields,
|
|
|
+ shouldMap["should"] = []interface{}{
|
|
|
+ map[string]interface{}{
|
|
|
+ "match": map[string]interface{}{
|
|
|
+ "IndexCode": keyword,
|
|
|
+ },
|
|
|
},
|
|
|
- })
|
|
|
+ map[string]interface{}{
|
|
|
+ "match": map[string]interface{}{
|
|
|
+ "IndexName": keyword,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+ //queryFields := []string{"IndexName.keyword", "IndexName.ik", "IndexName.ngram", "IndexCode.keyword", "IndexCode.ngram"}
|
|
|
+ //mustMap = append(mustMap, map[string]interface{}{
|
|
|
+ // "multi_match": map[string]interface{}{
|
|
|
+ // "query": keyword,
|
|
|
+ // "fields": queryFields,
|
|
|
+ // },
|
|
|
+ //})
|
|
|
}
|
|
|
|
|
|
// 来源/子来源
|
|
@@ -2031,9 +2031,9 @@ func SearchDataSourceIndex(indexName, keyword string, source, subSource int, cla
|
|
|
}
|
|
|
|
|
|
// 关键字匹配
|
|
|
- //mustMap = append(mustMap, map[string]interface{}{
|
|
|
- // "bool": shouldMap,
|
|
|
- //})
|
|
|
+ mustMap = append(mustMap, map[string]interface{}{
|
|
|
+ "bool": shouldMap,
|
|
|
+ })
|
|
|
queryMap := map[string]interface{}{
|
|
|
"query": map[string]interface{}{
|
|
|
"bool": map[string]interface{}{
|
|
@@ -2057,14 +2057,14 @@ func SearchDataSourceIndex(indexName, keyword string, source, subSource int, cla
|
|
|
total = t
|
|
|
|
|
|
// 表格名称高亮,分页
|
|
|
- //highlightKeyName := "IndexName"
|
|
|
- highlightIk := "IndexName.ik"
|
|
|
- highlightKeyword := "IndexName.keyword"
|
|
|
+ highlightKeyName := "IndexName"
|
|
|
+ //highlightIk := "IndexName.ik"
|
|
|
+ //highlightKeyword := "IndexName.keyword"
|
|
|
queryMap["highlight"] = map[string]interface{}{
|
|
|
"fields": map[string]interface{}{
|
|
|
- //highlightKeyName: map[string]interface{}{},
|
|
|
- highlightIk: map[string]interface{}{},
|
|
|
- highlightKeyword: map[string]interface{}{},
|
|
|
+ highlightKeyName: map[string]interface{}{},
|
|
|
+ //highlightIk: map[string]interface{}{},
|
|
|
+ //highlightKeyword: map[string]interface{}{},
|
|
|
},
|
|
|
"pre_tags": "<span style=\"color:#0052D9\">",
|
|
|
"post_tags": "</span>",
|
|
@@ -2106,19 +2106,19 @@ func SearchDataSourceIndex(indexName, keyword string, source, subSource int, cla
|
|
|
err = fmt.Errorf("hits json unmarshal err: %v", e)
|
|
|
return
|
|
|
}
|
|
|
- //if len(v.Highlight[highlightKeyName]) > 0 {
|
|
|
- // item.SearchText = v.Highlight[highlightKeyName][0]
|
|
|
- //}
|
|
|
+ if len(v.Highlight[highlightKeyName]) > 0 {
|
|
|
+ item.SearchText = v.Highlight[highlightKeyName][0]
|
|
|
+ }
|
|
|
|
|
|
// 优先取keyword的高亮,其次是ik分词之后的高亮
|
|
|
- if len(v.Highlight) > 0 {
|
|
|
- if len(v.Highlight[highlightKeyword]) > 0 {
|
|
|
- item.SearchText = v.Highlight[highlightKeyword][0]
|
|
|
- }
|
|
|
- if len(v.Highlight[highlightKeyword]) == 0 && len(v.Highlight[highlightIk]) > 0 {
|
|
|
- item.SearchText = v.Highlight[highlightIk][0]
|
|
|
- }
|
|
|
- }
|
|
|
+ //if len(v.Highlight) > 0 {
|
|
|
+ // if len(v.Highlight[highlightKeyword]) > 0 {
|
|
|
+ // item.SearchText = v.Highlight[highlightKeyword][0]
|
|
|
+ // }
|
|
|
+ // if len(v.Highlight[highlightKeyword]) == 0 && len(v.Highlight[highlightIk]) > 0 {
|
|
|
+ // item.SearchText = v.Highlight[highlightIk][0]
|
|
|
+ // }
|
|
|
+ //}
|
|
|
if item.SearchText == "" {
|
|
|
item.SearchText = item.IndexName
|
|
|
}
|