فهرست منبع

核心观点字段解析

xingzai 2 سال پیش
والد
کامیت
2b06e48137
2فایلهای تغییر یافته به همراه7 افزوده شده و 0 حذف شده
  1. 1 0
      controllers/report.go
  2. 6 0
      services/article.go

+ 1 - 0
controllers/report.go

@@ -506,6 +506,7 @@ func (this *ReportController) List() {
 		list[i].Body, _ = services.GetReportContentTextSub(item.Body)
 		//list[i].Abstract = html.UnescapeString(item.Abstract)
 		list[i].Abstract, _ = services.GetReportContentTextSub(item.Abstract)
+		list[i].Annotation = services.GetAnnotationTextSub(item.Annotation)
 	}
 
 	for k, v := range list {

+ 6 - 0
services/article.go

@@ -56,6 +56,12 @@ func GetReportContentTextSub(content string) (contentSub string, err error) {
 	return
 }
 
+func GetAnnotationTextSub(content string) (contentSub string) {
+	contentSub = strings.Replace(content, "<p class=\"ql-align-justify\">", "&nbsp;", -1)
+	contentSub = strings.Replace(contentSub, "</p>", "", -1)
+	return
+}
+
 func GetReportContentTextSubNew(content string) (contentSub string, err error) {
 	content = html.UnescapeString(content)
 	doc, errdoc := goquery.NewDocumentFromReader(strings.NewReader(content))