type F struct { Amount float64 `json:"amount"`}func main() { amount := F{9.426453e+06} body, err := json.Marshal(amount) // 用的go自带的json包 fmt.Println(string(body), err) // {"amount":9426453} }
这个json出来把小数点后面的参数给整没了,求大神赐教???
相关分类