แปลงเวลาเวลาเป็นสตริง


111

ฉันพยายามเพิ่มค่าบางอย่างจากฐานข้อมูลของฉันไปที่[]stringใน Go บางส่วนเป็นการประทับเวลา

ฉันได้รับข้อผิดพลาด:

ไม่สามารถใช้ U.Created_date (type time.Time) เป็นสตริงประเภทในองค์ประกอบอาร์เรย์

ฉันสามารถแปลงtime.Timeเป็นstring?

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


ฉันไม่สามารถรับคำแนะนำบางอย่างที่ใช้งานได้time.Now().String()ตอนนี้
Mark Robson

คำตอบ:


170

คุณสามารถใช้Time.String()วิธีการแปลงtime.Timeไฟล์string. "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():

รูปแบบส่งกลับการแสดงข้อความของค่าเวลาที่จัดรูปแบบตามเค้าโครงซึ่งกำหนดรูปแบบโดยการแสดงเวลาอ้างอิงที่กำหนดให้เป็นอย่างไร

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 () รูปแบบ ("2017/20/01 13:53:35")) ฉันเริ่มแปลก 21017/210/01 112: 3012: 1230
irom

3
ใช้ fmt.Println (time.Now () รูปแบบ ("2006/01/02 15:04:05")) เนื่องจากสตริงรูปแบบได้รับการแก้ไขเป็น "2006 01 02 15 04 05"
Hao

2

ไปที่ Playground 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 () รูปแบบ ("2017/20/01 13:53:35")) ฉันเริ่มแปลก 21017/210/01 112: 3012: 1230
irom

เพราะคุณทำ 20 ซึ่งไม่มีความหมายสำหรับการไปดังนั้น 2 จึงเป็นวันที่ 21 ซึ่งน่าจะเป็นในเวลานั้นและ 0 พิเศษจะต่อท้าย @irom
nikoss

1

โปรดค้นหาวิธีง่ายๆในการกำหนดรูปแบบวันที่และเวลาใน Go Lang โปรดดูตัวอย่างด้านล่าง

แพคเกจ Link: https://github.com/vigneshuvi/GoDateFormat

โปรดค้นหาผู้ถือครอง: 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
}

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.