时间格式化增加时区

This commit is contained in:
白茶清欢 2023-03-19 14:13:11 +08:00
parent 2560949681
commit 6710e345cc

View File

@ -26,7 +26,7 @@ type ownTime struct {
//
// Date : 1:34 上午 2021/10/7
func (ot *ownTime) GetCurrentFormatTime() string {
return time.Now().Format("2006-01-02 15:04:05")
return time.Now().In(time.Local).Format("2006-01-02 15:04:05")
}
// FormatUnixNano 格式化纳秒时间戳
@ -46,7 +46,7 @@ func (ot *ownTime) FormatUnixNano(timestamp int64) string {
//
// Date : 11:55 2022/7/14
func (ot *ownTime) FormatUnixMilli(timestamp int64) string {
return time.UnixMilli(timestamp).Format("2006-01-02 15:04:05.000")
return time.UnixMilli(timestamp).In(time.Local).Format("2006-01-02 15:04:05.000")
}
// FormatUnixSec ...
@ -55,7 +55,7 @@ func (ot *ownTime) FormatUnixMilli(timestamp int64) string {
//
// Date : 12:06 2022/7/14
func (ot *ownTime) FormatUnixSec(timestamp int64) string {
return time.Unix(timestamp, 0).Format("2006-01-02 15:04:05")
return time.Unix(timestamp, 0).In(time.Local).Format("2006-01-02 15:04:05")
}
// ParseISO8601Time 解析 2006-01-02T15:04:05+08:00 格式时间 -> 2006-01-02 15:04:05
@ -74,5 +74,5 @@ func (ot *ownTime) ParseISO8601Time(parseTime string) string {
return ""
}
return formatTime.Format("2006-01-02 15:04:05")
return formatTime.In(time.Local).Format("2006-01-02 15:04:05")
}