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出来把小数点后面的参数给整没了,求大神赐教???
1 回答
- 1 回答
- 0 关注
- 596 浏览
添加回答
举报
0/150
提交
取消