如何在 GO 中使用毫秒(字符串)将毫秒(uint64)转换为时间格式 RFC3999?
例如:
var milleSecond int64
milleSecond = 1645286399999 //My Local Time : Sat Feb 19 2022 23:59:59
var loc = time.FixedZone("UTC-4", -4*3600)
string1 := time.UnixMilli(end).In(loc).Format(time.RFC3339)
实际结果:2022-02-19T11:59:59-04:00
预期结果(应该是):2022-02-19T11:59:59.999-04:00
婷婷同学_
相关分类