登录
首页 >  Golang >  Go问答

可空时间.Time

来源:Golang技术栈

时间:2023-04-05 08:40:50 126浏览 收藏

一分耕耘,一分收获!既然都打开这篇《可空时间.Time》,就坚持看下去,学下去吧!本文主要会给大家讲到golang等等知识点,如果大家对本文有好的建议或者看到有不足之处,非常欢迎大家积极提出!在后续文章我会继续更新Golang相关的内容,希望对大家都有所帮助!

问题内容

我有一个打算用数据库记录填充的结构,其中一个日期时间列可以为空:

type Reminder struct {
    Id         int
    CreatedAt  time.Time
    RemindedAt *time.Time
    SenderId   int
    ReceiverId int
}

由于指针可以是nil,所以我做了RemindedAt一个指针,但这需要代码知道At变量之间的区别。有没有更优雅的方法来处理这个?

正确答案

您可以使用pq.NullTime,或者使用 Go 1.13,您现在可以使用标准库的sql.NullTime类型。

来自github 上的lib/pq :

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
}

文中关于golang的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《可空时间.Time》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>