Cannot unmarshal string into Go value of type int64

后端 未结 2 1110
无人共我
无人共我 2021-02-01 13:29

I have struct

type tySurvey struct {
    Id     int64            `json:\"id,omitempty\"`
    Name   string           `json:\"name,omitempty\"`
}
<
2条回答
  •  攒了一身酷
    2021-02-01 14:01

    use json.Number

    type tySurvey struct {
        Id     json.Number      `json:"id,omitempty"`
        Name   string           `json:"name,omitempty"`
    }
    

提交回复
热议问题