英文:
Go escape comma in JSON
问题
如何在Go语言中的JSON标签中转义逗号?
type AA struct {
MyStr string `json:"sub,ject"`
}
func main() {
jsonStr := `
{
"sub,ject": "I"
}
`
stt := new(AA)
json.Unmarshal([]byte(jsonStr), stt)
fmt.Println(stt)
t, _ := strconv.Unquote(jsonStr)
fmt.Println(t)
}
这段代码无法正确解析键,并且只返回空结果。
如何转义逗号?
英文:
http://play.golang.org/p/lF2ZgAyxei
How do I escape comma in JSON tag in Go?
type AA struct {
MyStr string `json:"sub,ject"`
}
func main() {
jsonStr := `
{
"sub,ject": "I"
}
`
stt := new(AA)
json.Unmarshal([]byte(jsonStr), stt)
fmt.Println(stt)
t, _ := strconv.Unquote(jsonStr)
fmt.Println(t)
}
This does not grab the key and only returns empty results.
How do I escape the comma?
答案1
得分: 7
JSON编码包用于解析字段标签的代码位于tags.go中。该代码将字段名称与选项在第一个逗号处分隔开来。无法对逗号进行转义。
英文:
The code used by the JSON encoding package to parse field tags is in tags.go. This code splits the field name from the options at the first comma. It not possible to escape the comma.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论