dpvmtdu364462 2019-04-11 03:22
浏览 351
已采纳

如何将字符串转换为time.Time

When I try to convert this json to time I gets the error

output:

HERE------------------------------------ 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC

raw:

{
  "tenantID": "9e266e1a750e45f8862e83341a5d0970",
  "startTime": "2019-4-1T11:45:26.371Z",
  "endTime": "2019-4-10T11:45:26.371Z"
}

Controller:

var bodyBytes []byte
raw := make(map[string]interface{})
jsons := make(map[string]interface{})

if h.Ctx.Request.Body != nil {
    bodyBytes, _ = ioutil.ReadAll(h.Ctx.Request.Body)
}

json.Unmarshal(bodyBytes, &raw)

time1, err := time.Parse(time.RFC3339,raw["startTime"].(string));
time2, err := time.Parse(time.RFC3339,raw["endTime"].(string));
fmt.Println("HERE------------------------------------",time1,time2)

usageSingle, err := compute.UsageSingleTenant(raw["tenantID"].(string), time1, time2)
  • 写回答

1条回答 默认 最新

  • douxuelv7755 2019-04-11 03:42
    关注

    You're using RFC3339, which requires time of the form:

    2019-04-01T11:45:26.371Z
    

    not

    2019-4-1T11:45:26.371Z
    

    When I put the zero padding in your code, it worked fine. Or if I didn't specify RFC time and instead used:

    time1, err := time.Parse("2006-2-1T15:04:05.999Z",raw["startTime"].(string));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化