1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-22 13:10:19 +00:00

Merge pull request #3171 from whomm/master

debug stringsToJSON
This commit is contained in:
astaxie
2018-06-23 22:50:11 +08:00
committed by GitHub

View File

@ -350,6 +350,11 @@ func stringsToJSON(str string) string {
jsons.WriteRune(r)
} else {
jsons.WriteString("\\u")
if rint < 0x100 {
jsons.WriteString("00")
} else if rint < 0x1000 {
jsons.WriteString("0")
}
jsons.WriteString(strconv.FormatInt(int64(rint), 16))
}
}