溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

解決XORM的時區(qū)問題

發(fā)布時間:2020-03-30 01:38:02 來源:網(wǎng)絡(luò) 閱讀:8600 作者:夢朝思夕 欄目:編程語言

如果你升級使用了較為新版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ū)問題,因?yàn)槲覀兪褂玫氖?code>東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é)一下:

  • 在項(xiàng)目中時區(qū)一定要在項(xiàng)目初始化時候就已經(jīng)設(shè)置好
  • 字符串轉(zhuǎn)換時間盡可能使用time.ParseInLocation
  • parseTime=true&loc=Local或者parseTime=true&loc=Asia%2FShanghaixorm解析時間類型為map[string][]byte有著影響
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI