dongshan8953 2015-05-07 16:15
浏览 1012
已采纳

golang:将日期和时间转换为秒

If I have date format: "1/_2/2006, 15:04:05"

How to I convert the entire date to seconds. Is there a golang time method?

  • 写回答

2条回答 默认 最新

  • doubiaokai4998 2015-05-07 16:22
    关注

    There's a nice little package on GitHub to abstract the format matching part of Parse (it requires you provide a string to explain the format of your date); https://github.com/araddon/dateparse

    You can just use ParseAny to get a time.Time{} call it ts then ts.Unix to get seconds. I would recommend it since Parse itself is extremely sensitive to it's input.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?