作者 tangxvhui

调整创建文章时对段落内容的处理

@@ -123,15 +123,11 @@ func (l *MiniCreateArticleLogic) MiniCreateArticle(req *types.MiniArticleCreateR @@ -123,15 +123,11 @@ func (l *MiniCreateArticleLogic) MiniCreateArticle(req *types.MiniArticleCreateR
123 123
124 //切分文章分段 124 //切分文章分段
125 sectionList := []domain.ArticleSection{} 125 sectionList := []domain.ArticleSection{}
  126 + newStr := ""
126 for i := range req.Section { 127 for i := range req.Section {
127 strList := strings.Split(req.Section[i], "\n") 128 strList := strings.Split(req.Section[i], "\n")
128 for i2 := range strList { 129 for i2 := range strList {
129 - newStr := strings.TrimSpace(strList[i2])  
130 - if len(newStr) == 0 {  
131 - continue  
132 - }  
133 - newStr = template.HTMLEscapeString(newStr)  
134 - 130 + newStr = template.HTMLEscapeString(strList[i2])
135 newSection := domain.ArticleSection{ 131 newSection := domain.ArticleSection{
136 Id: 0, 132 Id: 0,
137 CompanyId: author.CompanyId, 133 CompanyId: author.CompanyId,