go
go copied to clipboard
support data type auto cast
like this one:
{
"name": "ok",
"age": 20
}
{
"name": "ok",
"age": "20"
}
type GoStruct struct {
Name string json:"name"
Age int json:"age"
}
simple make Age both support json int and string