• Golang 自定义时间结构体支持Json&Gorm


    前言

    因为时区等问题,很多项目需要自定义时区和时间格式。还有需要自定义输出显示。

    方案

    代码

    package timetool
    
    import (
    	"database/sql/driver"
    	"fmt"
    	"time"
    )
    
    const TimeFormat = "2006-01-02 15:04:05"
    const FormatISOTime = "2006-01-02T15:04:05Z"
    const DayFormat = "20060102"
    const SecondDateFormat = "20060102150405"
    const FYear = "2006"     //年
    const FMonth = "01"      //月
    const FMonthNoZero = "1" //月,不带先导零
    const FDay = "02"        //日
    const FDayNoZero = "2"   //日,不带先导零
    const FHour = "15"       // 小时,24小时格式
    const FMinute = "04"     // 分钟
    const FSecond = "05"     // 秒
    
    // 1. 创建 time.Time 类型的副本 XTime;
    type MyTime struct {
    	time.Time
    }
    
    // 2. 为 MyTime 重写 MarshaJSON 方法,在此方法中实现自定义格式的转换;
    func (t MyTime) MarshalJSON() ([]byte, error) {
    
    	loc := time.FixedZone(pkg.TimeLocal.TimeZone, pkg.TimeLocal.TimeOffset)
    	output := fmt.Sprintf("\"%s\"", t.In(loc).Format(TimeFormat))
    	return []byte(output), nil
    }
    
    // 3. 为 MyTime 实现 Value 方法,写入数据库时会调用该方法将自定义时间类型转换并写入数据库;
    func (t MyTime) Value() (driver.Value, error) {
    	var zeroTime time.Time
    	if t.Time.UnixNano() == zeroTime.UnixNano() {
    		return nil, nil
    	}
    	return t.Time, nil
    }
    
    // 4. 为 MyTime 实现 Scan 方法,读取数据库时会调用该方法将时间数据转换成自定义时间类型;
    func (t *MyTime) Scan(v interface{}) error {
    	value, ok := v.(time.Time)
    	if ok {
    		*t = MyTime{Time: value}
    		return nil
    	}
    	return fmt.Errorf("can not convert %v to timestamp", v)
    }
    
    func (t *MyTime) String() string {
    	loc := time.FixedZone(pkg.TimeLocal.TimeZone, pkg.TimeLocal.TimeOffset)
    	return t.In(loc).String()
    }
    
    func (t *MyTime) GetTime() time.Time {
    	loc := time.FixedZone(pkg.TimeLocal.TimeZone, pkg.TimeLocal.TimeOffset)
    	return t.In(loc)
    }
    
    func (t *MyTime) UnmarshalJSON(data []byte) (err error) {
    	// 空值不进行解析
    	if len(data) == 2 {
    		return
    	}
    
    	if string(data) == "null" {
    		return
    	}
    
    	var now time.Time
    	// 指定解析的格式
    	if now, err = time.ParseInLocation(TimeFormat, string(data), time.Local); err == nil {
    		*t = MyTime{now}
    		return
    	}
    	// 指定解析的格式
    	if now, err = time.ParseInLocation('"'+TimeFormat+'"', string(data), time.Local); err == nil {
    		*t = MyTime{now}
    		return
    	}
    	//解析默认格式
    	if now, err = time.ParseInLocation('"'+time.RFC3339+'"', string(data), time.Local); err == nil {
    		*t = MyTime{now}
    		return
    	}
    
    	return
    }
    
    func MyTimeNow() MyTime {
    	return MyTime{Time: time.Now()}
    }
    
    func NewMyTime(ts ...int64) *MyTime {
    	if len(ts) == 0 {
    		return &MyTime{Time: time.Now()}
    	}
    	loc := time.FixedZone(pkg.TimeLocal.TimeZone, pkg.TimeLocal.TimeOffset)
    	return &MyTime{
    		Time: time.Unix(ts[0], 0).In(loc),
    	}
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107

    JSON 关键点:

    • 实现 MarshalJSON 方法
    • 实现 UnmarshalJSON 方法
    • 实现 Value 方法

    Gorm关键点:

    • 实现 Scan 方法
    • 实现 String 方法
  • 相关阅读:
    网站防钓鱼是否可以用SSL证书?
    liunx下ubuntu基础知识学习记录
    常见的文件系统格式
    UML(Unified Modeling Language)统一建模语言,及工具介绍、使用
    UE5.3.1 无法创建C++ 工程问题解决方法
    ArcGIS API for Android中针对MapView设置setOnTouchListener监听
    设计模式-模板模式
    CF1473C No More Inversions
    [发现了好东西] MS teams 使用-表情小窗口
    pta——建立学生信息链表,逆序数据建立链表,删除单链表偶数节点,链表拼接,统计专业人数,链表逆置
  • 原文地址:https://blog.csdn.net/u011069013/article/details/136659247