Go中的Date.now()等效

时间:2016-03-17 03:31:42

标签: javascript node.js date time go

在JavaScript中,我可以指定:

var now = Date.now();

然后使用now计算数字变量

Go中的

time.Time类型似乎不符合此要求。什么是Go的等效JavaScript Date.now()

5 个答案:

答案 0 :(得分:6)

Date.now()返回自纪元UTC以来的毫秒数

  

now()方法返回自1970年1月1日以来经过的毫秒数   00:00:00 UTC直到现在作为数字。

要在Go中获取,您可以使用:

time.Now().UTC().UnixNano() / 1e6

答案 1 :(得分:3)

您可以使用“time”包中的Now功能,如下所示:

package main

import (
    "fmt"
    "time"
)

func main() {
    fmt.Println(time.Now())
    fmt.Println(time.Now().Date())
}

示例输出:

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

以下是文档中的功能说明:

func Now() Time

现在返回当前的当地时间。

func (t Time) Date() (year int, month Month, day int)

日期返回发生t的年,月和日。

Live Demo中观看。

答案 2 :(得分:2)

Date.Now()以epoch(unix)格式返回当前的UTC日期和时间。 go中的等价物是:

time.Now().Unix()

time.Now()返回当前时间。调用Unix()会将时间转换为纪元或单位时间,即the number of seconds elapsed since January 1, 1970 UTC

Full GoDocs for Time

答案 3 :(得分:1)

在 go 中你可以使用方法 time.Now().Date()

答案 4 :(得分:0)

在go中你可以使用这些方法

package main

import (
    "fmt"
    "time"
)
func main() {

    currentTime := time.Now()
    
    fmt.Println(currentTime.Date())  //

    fmt.Println("Current Time in String: ", currentTime.String())

    fmt.Println("MM-DD-YYYY : ", currentTime.Format("01-02-2006"))

    fmt.Println("YYYY-MM-DD : ", currentTime.Format("2006-01-02"))

    fmt.Println("YYYY.MM.DD : ", currentTime.Format("2006.01.02 15:04:05"))

    fmt.Println("YYYY#MM#DD {Special Character} : ", currentTime.Format("2006#01#02"))

    fmt.Println("YYYY-MM-DD hh:mm:ss : ", currentTime.Format("2006-01-02 15:04:05"))

    fmt.Println("Time with MicroSeconds: ", currentTime.Format("2006-01-02 15:04:05.000000"))

    fmt.Println("Time with NanoSeconds: ", currentTime.Format("2006-01-02 15:04:05.000000000"))

    fmt.Println("ShortNum Month : ", currentTime.Format("2006-1-02"))

    fmt.Println("LongMonth : ", currentTime.Format("2006-January-02"))

    fmt.Println("ShortMonth : ", currentTime.Format("2006-Jan-02"))

    fmt.Println("ShortYear : ", currentTime.Format("06-Jan-02"))

    fmt.Println("LongWeekDay : ", currentTime.Format("2006-01-02 15:04:05 Monday"))

    fmt.Println("ShortWeek Day : ", currentTime.Format("2006-01-02 Mon"))

    fmt.Println("ShortDay : ", currentTime.Format("Mon 2006-01-2"))

    fmt.Println("Short Hour Minute Second: ", currentTime.Format("2006-01-02 3:4:5"))

    fmt.Println("Short Hour Minute Second: ", currentTime.Format("2006-01-02 3:4:5 PM"))

    fmt.Println("Short Hour Minute Second: ", currentTime.Format("2006-01-02 3:4:5 pm"))

//  2021 February 10
//  Current Time in String:  2021-02-10 11:47:30.5807222 +0530 +0530 m=+0.001994001
//  MM-DD-YYYY :  02-10-2021
//  YYYY-MM-DD :  2021-02-10
//  YYYY.MM.DD :  2021.02.10 11:47:30
//  YYYY#MM#DD {Special Character} :  2021#02#10
//  YYYY-MM-DD hh:mm:ss :  2021-02-10 11:47:30
//  Time with MicroSeconds:  2021-02-10 11:47:30.580722
//  Time with NanoSeconds:  2021-02-10 11:47:30.580722200
//  ShortNum Month :  2021-2-10
//LongMonth :  2021-February-10
//ShortMonth :  2021-Feb-10
//ShortYear :  21-Feb-10
//LongWeekDay :  2021-02-10 11:47:30 Wednesday
//  ShortWeek Day :  2021-02-10 Wed
//ShortDay :  Wed 2021-02-10
//  Short Hour Minute Second:  2021-02-10 11:47:30
//  Short Hour Minute Second:  2021-02-10 11:47:30 AM
//  Short Hour Minute Second:  2021-02-10 11:47:30 am

}