`和转义重复了。utils.go中func RemoveHtml(src string) string re, _ := regexp.Compile(`\\<[\\S\\s]+?\\>`) 应该为: re, _ := regexp.Compile("\\<[\\S\\s]+?\\>")
和转义重复了。utils.go中func RemoveHtml(src string) string re, _ := regexp.Compile(\<[\S\s]+?\>`) 应该为: re, _ := regexp.Compile("\<[\S\s]+?\>")