猿问

如何设置和解析正文请求中的时间?

我正在使用 Go 和 Gin Gonic,我有这样的东西:


import (

  "time"

)


type BodyType struct {

  YourDate: time.Time

}


func doThingWithPost(c *gin.Context) {

  var theBody BodyType

  c.BindJSON(&theBody)


  c.JSON(http.StatusOK, gin.H{"data": theBody.YourDate})

}


func main() {

    r.POST("/", doThingWithPost)

}

我的意图是制作一个像这样的请求正文:


{

  YourDate: 1589887669644

}

然后服务器自动获取我提供的 Int,并将该日期解析为日期格式 time.Time,有没有一种干净的方法可以做到这一点?如果我尝试编写自己的函数来接收 int64 类型的“YourDate”并解析为 time.Time 我会在这里重新发明轮子吗?


富国沪深
浏览 101回答 1
1回答

BIG阳

您可以创建自定义类型并使用它的BodyTyte结构。type SpecialDate struct {    time.Time}type BodyType struct {    YourDate SpecialDate}并写入UnmarshalJSONforSpecialDate将毫秒解析为time.Timefunc (sd *SpecialDate) UnmarshalJSON(input []byte) error {    millis, err := strconv.ParseInt(string(input), 10, 64)    if err != nil {        panic(err)    }    tm := time.Unix(0, millis*int64(time.Millisecond))    sd.Time = tm    return nil}
随时随地看视频慕课网APP

相关分类

Go
我要回答