标签:sql coder encode buffer hal encoder bytes UNC returns
func HTMLMarshal(str string) (returnStr string) {
bf := bytes.NewBuffer([]byte{})
jsonEncoder := json.NewEncoder(bf)
jsonEncoder.SetEscapeHTML(false)
jsonEncoder.Encode(str)
return bf.String()
}
标签:sql coder encode buffer hal encoder bytes UNC returns
原文地址:https://www.cnblogs.com/already/p/11840259.html