将time.Time转换为字符串


103

我正在尝试将数据库中的一些值添加到[]stringGo中。其中一些是时间戳。

我得到错误:

不能在数组元素中使用U.Created_date(类型time.Time)作为类型字符串

我可以转换time.Timestring吗?

type UsersSession struct {
    Userid int
    Timestamp time.Time
    Created_date time.Time
}

type Users struct {
    Name string
    Email string
    Country string
    Created_date time.Time
    Id int
    Hash string
    IP string
}

--

var usersArray = [][]string{}

rows, err := db.Query("SELECT u.id, u.hash, u.name, u.email, u.country, u.IP, u.created_date, us.timestamp, us.created_date FROM usersSession AS us LEFT JOIN users AS u ON u.id = us.userid WHERE us.timestamp + interval 30 minute >= now()")

U := Users{}
US := UsersSession{}

for rows.Next() {
    err = rows.Scan(&U.Id, &U.Hash, &U.Name, &U.Email, &U.Country, &U.IP, &U.Created_date, &US.Timestamp, &US.Created_date)
    checkErr(err)

    userid_string := strconv.Itoa(U.Id)
    user := []string{userid_string, U.Hash, U.Name, U.Email, U.Country, U.IP, U.Created_date, US.Timestamp, US.Created_date}
    // -------------
    // ^ this is where the error occurs
    // cannot use U.Created_date (type time.Time) as type string in array element (for US.Created_date and US.Timestamp aswell)
    // -------------

    usersArray = append(usersArray, user)
    log.Print("usersArray: ", usersArray)
}

编辑

我添加了以下内容。现在可以了,谢谢。

userCreatedDate := U.Created_date.Format("2006-01-02 15:04:05")
userSessionCreatedDate := US.Created_date.Format("2006-01-02 15:04:05")
userSessionTimestamp := US.Timestamp.Format("2006-01-02 15:04:05")

值得强调的事实是编译器错误完全描述了该错误。您不能将时间类型放置在字符串数组中。
Ben Campbell

Answers:


159

您可以使用Time.String()方法将转换time.Timestring。这使用格式字符串"2006-01-02 15:04:05.999999999 -0700 MST"

如果您需要其他自定义格式,则可以使用Time.Format()。例如,yyyy-MM-dd HH:mm:ss使用格式字符串获取时间戳的格式"2006-01-02 15:04:05"

例:

t := time.Now()
fmt.Println(t.String())
fmt.Println(t.Format("2006-01-02 15:04:05"))

输出(在Go Playground上尝试):

2009-11-10 23:00:00 +0000 UTC
2009-11-10 23:00:00

注意:“ Go Playground”上的时间始终设置为上面看到的值。在本地运行以查看当前日期/时间。

另外请注意,使用Time.Format()布局作为布局时,string您始终必须以希望格式化结果的方式传递相同的时间(称为参考时间)。记录在Time.Format()

Format返回根据布局格式化的时间值的文本表示形式,它通过显示参考时间(定义为

Mon Jan 2 15:04:05 -0700 MST 2006

将显示是否为该值;它作为所需输出的示例。然后,将相同的显示规则应用于时间值。


21
只是为了清楚。为了传递自定义时间格式,您必须使用时间值Mon Jan 2 15:04:05 -0700 MST 2006并将此时间设置为所需的任何格式。如果您使用此值传递了Go格式,它将理解该格式。您不能使用任何其他时间值。我花了一些时间才想出这个问题,并想将其添加为评论
Ahmed Essam

@AhmedEssam谢谢,将其包含在答案中。
icza

20
package main                                                                                                                                                           

import (
    "fmt"
    "time"
)

// @link https://golang.org/pkg/time/

func main() {

    //caution : format string is `2006-01-02 15:04:05.000000000`
    current := time.Now()

    fmt.Println("origin : ", current.String())
    // origin :  2016-09-02 15:53:07.159994437 +0800 CST

    fmt.Println("mm-dd-yyyy : ", current.Format("01-02-2006"))
    // mm-dd-yyyy :  09-02-2016

    fmt.Println("yyyy-mm-dd : ", current.Format("2006-01-02"))
    // yyyy-mm-dd :  2016-09-02

    // separated by .
    fmt.Println("yyyy.mm.dd : ", current.Format("2006.01.02"))
    // yyyy.mm.dd :  2016.09.02

    fmt.Println("yyyy-mm-dd HH:mm:ss : ", current.Format("2006-01-02 15:04:05"))
    // yyyy-mm-dd HH:mm:ss :  2016-09-02 15:53:07

    // StampMicro
    fmt.Println("yyyy-mm-dd HH:mm:ss: ", current.Format("2006-01-02 15:04:05.000000"))
    // yyyy-mm-dd HH:mm:ss:  2016-09-02 15:53:07.159994

    //StampNano
    fmt.Println("yyyy-mm-dd HH:mm:ss: ", current.Format("2006-01-02 15:04:05.000000000"))
    // yyyy-mm-dd HH:mm:ss:  2016-09-02 15:53:07.159994437
}    

1
当我尝试fmt.Println(time.Now()。Format(“ 2017/20/01 13:53:35”))时,我变得很奇怪21017/210/01 112:3012:1230
irom

3
请使用fmt.Println(time.Now()。Format(“ 2006/01/02 15:04:05”)),因为格式字符串是固定的,所以它是“ 2006 01 02 15 04 05”

2

前往游乐场 http://play.golang.org/p/DN5Py5MxaB

package main

import (
    "fmt"
    "time"
)

func main() {
    t := time.Now()
    // The Time type implements the Stringer interface -- it
    // has a String() method which gets called automatically by
    // functions like Printf().
    fmt.Printf("%s\n", t)

    // See the Constants section for more formats
    // http://golang.org/pkg/time/#Time.Format
    formatedTime := t.Format(time.RFC1123)
    fmt.Println(formatedTime)
}

当我尝试fmt.Println(time.Now()。Format(“ 2017/20/01 13:53:35”))时,我变得很奇怪21017/210/01 112:3012:1230
irom

因为您执行20并不有意义,所以2表示当时的日期可能是21,而多余的0只是附加到@irom
nikoss 18-4-24的

1

请在Go Lang中找到转换日期和时间格式的简单解决方案。请在下面找到示例。

软件包链接:https : //github.com/vigneshuvi/GoDateFormat

请找到plackholders:https ://medium.com/@Martynas/formatting-date-and-time-in-golang-5816112bf098

package main


// Import Package
import (
    "fmt"
    "time"
    "github.com/vigneshuvi/GoDateFormat"
)

func main() {
    fmt.Println("Go Date Format(Today - 'yyyy-MM-dd HH:mm:ss Z'): ", GetToday(GoDateFormat.ConvertFormat("yyyy-MM-dd HH:mm:ss Z")))
    fmt.Println("Go Date Format(Today - 'yyyy-MMM-dd'): ", GetToday(GoDateFormat.ConvertFormat("yyyy-MMM-dd")))
    fmt.Println("Go Time Format(NOW - 'HH:MM:SS'): ", GetToday(GoDateFormat.ConvertFormat("HH:MM:SS")))
    fmt.Println("Go Time Format(NOW - 'HH:MM:SS tt'): ", GetToday(GoDateFormat.ConvertFormat("HH:MM:SS tt")))
}

func GetToday(format string) (todayString string){
    today := time.Now()
    todayString = today.Format(format);
    return
}

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.