dsshsta97935 2018-09-22 19:04
浏览 1124
已采纳

将mysql datetime解析为golang时间

I have MySQL datetime in my table in the MySQL standard format like

"2018-09-19 18:26:32.000000"

and when I try converting it ti golang time using time.parse() function, I get the error that

parsing time "2018-09-19 18:26:32.000000": month out of range

I tried searching online and the format seems to be allowed and commonly used by many to successfully parse.

Can anyone help me with what I am missing? Below is the code snippet that I am using.

import (
    "fmt"
    "time"
)

layout := "2018-09-19 18:26:32.000000"
fmt.Println(val)
// prints 2018-09-19 18:26:32.000000
t, err := time.Parse(layout, val)
fmt.Println(fmt.Println(t.Unix()))
// prints -62135596800 
fmt.Println(err)
// prints parsing time "2018-09-19 18:26:32.000000": month out of range
  • 写回答

1条回答 默认 最新

  • duannao1920 2018-09-22 19:20
    关注

    Your layout is wrong, it should be "2006-01-02 15:04:05.000000". The documentation states:

    Parse parses a formatted string and returns the time value it represents. The layout defines the format by showing how the reference time, defined to be

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

    would be interpreted if it were the value; it serves as an example of the input format. The same interpretation will then be made to the input string.

    package main
    
    import (
        "fmt"
        "time"
    )
    
    func main() {
    
        val := "2018-09-19 18:26:32.000000"
        layout := "2006-01-02 15:04:05.000000"
        t, _ := time.Parse(layout, val)
        fmt.Println(t.Unix()) // prints 1537381592
    }
    

    Outputs

    1537381592
    

    Try it here

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?