如果你升級使用了較為新版xorm
(如v0.6.3)和go-sql-driver
(如v1.3)的go類庫,那么你就可能會遇到時區(qū)問題。 如
time.Parse("2006-01-02 15:04:05" ,"2018-01-15 12:11:12") // 2018-01-15T12:11:12+00:00
寫入是數(shù)據(jù)庫時候就會被改變?yōu)?code>2018-01-15T20:11:12+00:00。
上述的就是時區(qū)問題,因為我們使用的是東8時區(qū)
,默認(rèn)會被設(shè)置為0時區(qū)
,解決方案很簡單,只需要在main函數(shù)中或者main包中初始化時區(qū):
time.LoadLocation("Asia/Shanghai")
數(shù)據(jù)庫配置為
root:root@tcp(127.0.0.1:3306)/test?charset=utf8&interpolateParams=true
xorm的初始化修改為:
orm, err := initOrm(ds, maxIdleConn, maxOpenConn, debug)
if err != nil {
return nil, err
}
r.Value = orm
orm.DatabaseTZ = time.Local // 必須
orm.TZLocation = time.Local // 必須
orm.SetMaxIdleConns(maxIdleConn)
orm.SetMaxOpenConns(maxOpenConn)
字符串轉(zhuǎn)換時間也需要改為
time.ParseInLocation("2006-01-02 15:04:05" ,"2018-01-15 12:11:12",time.Local)
此時寫庫時區(qū)問題就可以得到解決了,但是讀庫問題如下的的方式:
rss, err := this.Repo.Query(ctx, sqlStr, pos, now, os)
images := make([]*models.ImageConf, 0, len(rss))
for _, rs := range rss {
var tmpImage models.ImageConf
MapToStruct(rs, &tmpImage)
images = append(images, &tmpImage)
}
func MapToStruct(mapping map[string][]byte, j interface{}) {
elem := reflect.ValueOf(j).Elem()
for i := 0; i < elem.NumField(); i++ {
var key string
key = elem.Type().Field(i).Name
switch elem.Field(i).Interface().(type) {
case int, int8, int16, int32, int64:
x, _ := strconv.ParseInt(string(mapping[key]), 10, 64)
elem.Field(i).SetInt(x)
case string:
elem.Field(i).SetString(string(mapping[key]))
case float64:
x, _ := strconv.ParseFloat(string(mapping[key]), 64)
elem.Field(i).SetFloat(x)
case float32:
x, _ := strconv.ParseFloat(string(mapping[key]), 32)
elem.Field(i).SetFloat(x)
case time.Time:
timeStr := string(mapping[key])
timeDB, err := time.ParseInLocation("2006-01-02 15:04:05", timeStr, time.Local)
if err != nil {
timeDB, err = time.ParseInLocation("2006-01-02", timeStr, time.Local)
if err != nil {
timeDB, err = time.ParseInLocation("15:04:05", timeStr, time.Local)
} else {
timeDB = time.Date(0, 0, 0, 0, 0, 0, 1, time.Local)
}
}
elem.Field(i).Set(reflect.ValueOf(timeDB))
}
}
}
其中MapToStruct
函數(shù)中的time.Time
類型這兒有一個需要我們注意的,如果配置的數(shù)據(jù)庫為
root:root@tcp(127.0.0.1:3306)/test?charset=utf8&interpolateParams=true&parseTime=true&loc=Local
多出了&parseTime=true&loc=Local
此時timeStr := string(mapping[key])
得到的將會是2006-01-02T15:04:05+08:00
。
那么你的轉(zhuǎn)換格式應(yīng)該為2006-01-02T15:04:05+08:00
。
總結(jié)一下:
time.ParseInLocation
parseTime=true&loc=Local
或者parseTime=true&loc=Asia%2FShanghai
對xorm
解析時間類型為map[string][]byte
有著影響另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
分享標(biāo)題:解決XORM的時區(qū)問題-創(chuàng)新互聯(lián)
文章來源:http://www.rwnh.cn/article4/ccghie.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供小程序開發(fā)、定制網(wǎng)站、虛擬主機、靜態(tài)網(wǎng)站、動態(tài)網(wǎng)站、網(wǎng)站改版
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容