Golang解決XORM的時區問題

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

如果你升級使用了較為新版xorm(如v0.6.3)和go-sql-driver(如v1.3)的go類庫,那麼你就可能會遇到時區問題。 如

time.Parse("2006-01-02 15:04:05" ,"2018-01-15 12:11:12") // 2018-01-15T12:11:12+00:00

寫入是資料庫時候就會被改變為2018-01-15T20:11:12+00:00
上述的就是時區問題,因為我們使用的是東8時區,預設會被設定為0時區,解決方案很簡單,只需要在main函數中或者main包中初始化時區:

time.LoadLocation("Asia/Shanghai")

資料庫配置為

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 = ormorm.DatabaseTZ = time.Local // 必須orm.TZLocation = time.Local // 必須orm.SetMaxIdleConns(maxIdleConn)orm.SetMaxOpenConns(maxOpenConn)

字串轉換時間也需要改為

time.ParseInLocation("2006-01-02 15:04:05" ,"2018-01-15 12:11:12",time.Local)

此時寫庫時區問題就可以得到解決了,但是讀庫問題如下的的方式:

rss, err := this.Repo.Query(ctx, sqlStr, pos, now, os)images := make([]*models.ImageConf, 0, len(rss))for _, rs := range rss {var tmpImage models.ImageConfMapToStruct(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 stringkey = elem.Type().Field(i).Nameswitch 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函數中的time.Time類型這兒有一個需要我們注意的,如果配置的資料庫為

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
那麼你的轉換格式應該為2006-01-02T15:04:05+08:00

總結一下:

  • 在項目中時區一定要在項目初始化時候就已經設定好
  • 字串轉換時間儘可能使用time.ParseInLocation
  • parseTime=true&loc=Local或者parseTime=true&loc=Asia%2FShanghaixorm解析時間類型為map[string][]byte有著影響
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.