我正在使用 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 我会在这里重新发明轮子吗?
BIG阳
相关分类