【发布时间】:2018-01-25 09:20:35
【问题描述】:
当我使用beego/orm操作postgresql数据库时,出现类似“missing Location in call to Time.In”这样的错误。
代码示例
type dataTest struct {
Id int `pk:"auto"`
Data time.Time `orm:"auto_now;type(timestamp);null"`
}
local, _ := time.LoadLocation("UTC")
test_time, err := time.ParseInLocation("2006-01-02 15:04:05", "1111-01-25 14:27:07", local)
orm.DefaultTimeLoc = time.UTC
o,err := orm.NewOrmWithDB("postgres","default",db)
temp := new(dataTest)
temp.Id = 1
temp.Data = test_time
o.Update(temp)
【问题讨论】:
-
不要忽略
time.LoadLocation()返回的错误(其实不要忽略任何错误)。同样对于 UTC 时区,使用time.UTC变量。