go html 转字符串存mysql表中

func HTMLMarshal(str string) (returnStr string) {
bf := bytes.NewBuffer([]byte{})
jsonEncoder := json.NewEncoder(bf)
jsonEncoder.SetEscapeHTML(false)
jsonEncoder.Encode(str)

return bf.String()
}

posted on 2019-11-12 10:37  studyphp  阅读(396)  评论(0编辑  收藏  举报

导航