可以考虑的时间。在golang中的时间

前端之家收集整理的这篇文章主要介绍了可以考虑的时间。在golang中的时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个结构,我打算用数据库记录填充,其中一个日期时间列可以为空:
type Reminder struct {
    Id         int
    CreatedAt  time.Time
    RemindedAt *time.Time
    SenderId   int
    ReceiverId int
}

由于指针可以为nil,因此我将RemindedAt设为指针,但这将要求代码知道At变量之间的差异。有更优雅的方式来处理这个问题吗?

你可以使用pq.NullTime。

lib/pq开始,在github上:

type NullTime struct {
    Time  time.Time
    Valid bool // Valid is true if Time is not NULL
}

// Scan implements the Scanner interface.
func (nt *NullTime) Scan(value interface{}) error {
    nt.Time,nt.Valid = value.(time.Time)
    return nil
}

// Value implements the driver Valuer interface.
func (nt NullTime) Value() (driver.Value,error) {
    if !nt.Valid {
        return nil,nil
    }
    return nt.Time,nil
}
原文链接:https://www.f2er.com/go/187047.html

猜你在找的Go相关文章