key解析支持转义符的处理

This commit is contained in:
2023-03-30 12:02:40 +08:00
parent 047935c85c
commit 9bbd781a1f
2 changed files with 11 additions and 1 deletions

View File

@ -108,6 +108,16 @@ func (g *Generate) getKey(startIndex int) (string, int, error) {
startIndex++
break
}
if charStr == KeywordEscapeSymbol {
// 转义符
startIndex++
if startIndex >= len(g.jsonDataByte) {
// 转义符后面没东西了
return "", startIndex, errors.New("escape symbol without any data")
}
charStr = string(g.jsonDataByte[startIndex])
}
keyCharList = append(keyCharList, charStr)
startIndex++
}