-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
bug漏洞漏洞
Description
Original Data
{
"a": 123,
"b": "xxx",
"c": [
[
1,
2,
3
],
[
1,
null,
3
]
]
}Result
type RootObject struct {
A int `json:"a"`
B string `json:"b"`
C []interface{} `json:"c"`
}Expect
type RootObject struct {
A int `json:"a"`
B string `json:"b"`
C [][]interface{} `json:"c"`
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bug漏洞漏洞