|
@@ -332,6 +332,8 @@ func EsAddOrEditData(indexName, docId string, item *ElasticTestArticleDetail) (e
|
|
|
"PublishDate": item.PublishDate,
|
|
|
"CategoryId": item.CategoryId,
|
|
|
"ExpertBackground": item.ExpertBackground,
|
|
|
+ "Abstract": item.Abstract,
|
|
|
+ "Annotation": item.Annotation,
|
|
|
}).Do(context.Background())
|
|
|
if err != nil {
|
|
|
return err
|
|
@@ -899,7 +901,6 @@ func EsArticleSearch(keyWord string, startSize, pageSize int, orderColumn string
|
|
|
keyWordArr = append(keyWordArr, keyWord)
|
|
|
keyWordLen = len(keyWordArr)
|
|
|
}
|
|
|
- //fmt.Println(keyWordArr)
|
|
|
mustMap := make([]interface{}, 0)
|
|
|
shouldMap := make(map[string]interface{}, 0)
|
|
|
//shouldMapquery := make(map[string]interface{}, 0)
|
|
@@ -926,7 +927,28 @@ func EsArticleSearch(keyWord string, startSize, pageSize int, orderColumn string
|
|
|
},
|
|
|
},
|
|
|
})
|
|
|
-
|
|
|
+ shouldMapquery = append(shouldMapquery, map[string]interface{}{
|
|
|
+ "function_score": map[string]interface{}{
|
|
|
+ "query": map[string]interface{}{
|
|
|
+ "multi_match": map[string]interface{}{
|
|
|
+ "boost": (lenkeyWordArr - k) * boost, //给查询的值赋予权重
|
|
|
+ "fields": []interface{}{"Abstract"},
|
|
|
+ "query": v,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ })
|
|
|
+ shouldMapquery = append(shouldMapquery, map[string]interface{}{
|
|
|
+ "function_score": map[string]interface{}{
|
|
|
+ "query": map[string]interface{}{
|
|
|
+ "multi_match": map[string]interface{}{
|
|
|
+ "boost": (lenkeyWordArr - k) * boost, //给查询的值赋予权重
|
|
|
+ "fields": []interface{}{"Annotation"},
|
|
|
+ "query": v,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ })
|
|
|
shouldMapquery = append(shouldMapquery, map[string]interface{}{
|
|
|
"function_score": map[string]interface{}{
|
|
|
"query": map[string]interface{}{
|
|
@@ -955,8 +977,10 @@ func EsArticleSearch(keyWord string, startSize, pageSize int, orderColumn string
|
|
|
highlightMap := make(map[string]interface{}, 0)
|
|
|
highlightMap = map[string]interface{}{
|
|
|
"fields": map[string]interface{}{
|
|
|
- "BodyText": map[string]interface{}{},
|
|
|
- "Title": map[string]interface{}{},
|
|
|
+ "BodyText": map[string]interface{}{},
|
|
|
+ "Title": map[string]interface{}{},
|
|
|
+ "Abstract": map[string]interface{}{},
|
|
|
+ "Annotation": map[string]interface{}{},
|
|
|
},
|
|
|
//样式 红色
|
|
|
"post_tags": []interface{}{"</font>"},
|
|
@@ -979,9 +1003,9 @@ func EsArticleSearch(keyWord string, startSize, pageSize int, orderColumn string
|
|
|
queryMap["from"] = startSize
|
|
|
queryMap["size"] = pageSize
|
|
|
queryMap["highlight"] = highlightMap
|
|
|
- jsonBytes, _ := json.Marshal(queryMap)
|
|
|
- fmt.Println(string(jsonBytes))
|
|
|
- utils.FileLog.Info(string(jsonBytes))
|
|
|
+ //jsonBytes, _ := json.Marshal(queryMap)
|
|
|
+ //fmt.Println(string(jsonBytes))
|
|
|
+ //utils.FileLog.Info(string(jsonBytes))
|
|
|
request := client.Search(indexName).Source(queryMap) // sets the JSON request
|
|
|
searchByMatch, err := request.Do(context.Background())
|
|
|
if searchByMatch != nil {
|
|
@@ -999,8 +1023,18 @@ func EsArticleSearch(keyWord string, startSize, pageSize int, orderColumn string
|
|
|
}
|
|
|
searchItem := new(models.SearchItem)
|
|
|
searchItem.ArticleId, _ = strconv.Atoi(v.Id)
|
|
|
- if len(v.Highlight["BodyText"]) > 0 {
|
|
|
+ if len(v.Highlight["BodyText"]) > 0 || len(v.Highlight["Abstract"]) > 0 || len(v.Highlight["Annotation"]) > 0 {
|
|
|
searchItem.Body = v.Highlight["BodyText"]
|
|
|
+ if len(v.Highlight["Abstract"]) > 0 {
|
|
|
+ for _, vRed := range v.Highlight["Abstract"] {
|
|
|
+ searchItem.Body = append(searchItem.Body, vRed)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if len(v.Highlight["Annotation"]) > 0 {
|
|
|
+ for _, vRed := range v.Highlight["Annotation"] {
|
|
|
+ searchItem.Body = append(searchItem.Body, vRed)
|
|
|
+ }
|
|
|
+ }
|
|
|
} else {
|
|
|
bodyRune := []rune(article.BodyText)
|
|
|
bodyRuneLen := len(bodyRune)
|