我有一个结构,我打算用数据库记录填充,其中一个日期时间列可以为空:
type Reminder struct { Id int CreatedAt time.Time RemindedAt *time.Time SenderId int ReceiverId int }
由于指针可以为nil,因此我将RemindedAt设为指针,但这将要求代码知道At变量之间的差异。有更优雅的方式来处理这个问题吗?
你可以使用pq.NullTime。
原文链接:https://www.f2er.com/go/187047.html从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 }