代码拉取完成,页面将自动刷新
package xtime
import (
"database/sql/driver"
"fmt"
"time"
)
const (
DateFormatTimestamp = "2006-01-02 15:04:05.000000"
DateFormatLine = "2006/01/02 15:04:05"
DateFormatLineV2 = "2006-01-02 15:04:05"
DateFormatLineV3 = "2006-01-02"
DateYmdNoLine = "20060102"
DateymdNoLine = "060102"
DateYmdNoLineV2 = "20060102150405"
DateYmdNoLineV3 = "200601"
)
type Time time.Time
// Scan 实现 sql.Scanner 接口,处理从数据库里拿出的值
func (t *Time) Scan(value interface{}) error {
switch vt := value.(type) {
case string:
tTime, err := time.ParseInLocation(DateFormatLineV2, vt, time.Local)
if err != nil {
return err
}
*t = Time(tTime)
case time.Time:
*t = Time(vt)
return nil
}
return fmt.Errorf("scan value type err")
}
// Value 实现 driver.Valuer 接口,处理将要写入数据库的值
func (t Time) Value() (driver.Value, error) {
if t.Time().IsZero() {
return nil, nil
}
return time.Time(t), nil
}
// Time get time.
func (t Time) Time() time.Time {
return time.Time(t)
}
func (t *Time) UnmarshalJSON(data []byte) (err error) {
now, err := time.ParseInLocation(`"`+DateFormatLineV2+`"`, string(data), time.Local)
*t = Time(now)
return
}
func (t Time) MarshalJSON() ([]byte, error) {
if t.Time().IsZero() {
return []byte{'"', '"'}, nil
}
b := make([]byte, 0, len(DateFormatLineV2)+2)
b = append(b, '"')
b = time.Time(t).AppendFormat(b, DateFormatLineV2)
b = append(b, '"')
return b, nil
}
func (t Time) String() string {
if t.Time().IsZero() {
return ""
}
return time.Time(t).Format(DateFormatLineV2)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。