Golang:如何将 time.Time 转换为 Protobuf 时间戳?
Posted
技术标签:
【中文标题】Golang:如何将 time.Time 转换为 Protobuf 时间戳?【英文标题】:Golang: How to Convert time.Time to a Protobuf Timestamp? 【发布时间】:2021-12-17 11:33:43 【问题描述】:我在 Golang 10-30 00:49:07.1236
中有一个 time.Time 变量,需要转换为 Go Protobuf timestamp.Timestamp。关于可以使用哪些功能来完成此任务的任何想法?还是我从错误的角度看这个?
【问题讨论】:
推荐使用godoc
或去 pkg.go.dev 阅读您正在使用的库的文档。例如,转到pkg.go.dev/google.golang.org/protobuf/types/known/…
【参考方案1】:
参见timestamppb
中的New
和Timestamp.AsTime
这些支持与time.Time
和Timestamp
之间的转换
【讨论】:
以上是关于Golang:如何将 time.Time 转换为 Protobuf 时间戳?的主要内容,如果未能解决你的问题,请参考以下文章
你如何将一个非常大的 (>max(int64)) 纳秒 unix 时间戳转换为 time.Time