这是解组目标的结构:
type ParsedObjectType struct{
Value struct{
E []struct {
B bool
C float32 `json:"coefficient"`
CE float32
G int `json:"group"`
P float32 `json:"period"`
T int `json:"type"`
}
}
}
soucre 字符串看起来像这样:
{"B":false,"C":2.123,"CE":0,"G":1,"P":1000,"T":0}
json.Unmarshal([]byte(string), ParsedObjectType)我收到后
{
"B": false,
"coefficient": 0,
"CE": 0,
"group": 0,
"period": 0,
"type": 0
}
在属性中使用零而不是源数据
炎炎设计
精慕HU
慕森卡
相关分类