英文: Protoc protoc-gen-go "timestamp" is not defined 问题 我需要使用Protocol Buffers将从Google Drive...
使用Golang API列出GCP项目。
英文: GCP list projects wtih Golang API 问题 我正在尝试学习更多关于Go语言的知识,我的第一个程序是列出我们GCP组织中的所有项目(相当于gcloud projec...
如何引入其他的proto文件?
英文: how to Introduce other proto files? 问题 我的问题:在生成的文件中找不到依赖项。 这是我的项目结构: ./api ├── auth │ └── servic...
跨语言(de)序列化
英文: cross language (de)serialization 问题 我正在尝试在Python中进行序列化,并在Golang中进行反序列化,但是遇到了错误。 错误信息 -- "无法...
在单个proto文件中导入具有相同消息名称的多个protobuf文件。
英文: Import multiple protobuf files with common message names in a single proto file 问题 我有几个共享一些消息名称的...
你可以使用类型切换(type switch)来确定 protoreflect.MessageDescriptor 的类型。
英文: How do I use a type switch to determine the type of a protoreflect.MessageDescriptor? 问题 我正在使用pr...
marshal protoreflect.MessageDescriptor可以翻译为”编组 protoreflect.MessageDescriptor”。
英文: marshal protoreflect.MessageDescriptor 问题 我正在尝试使用google.golang.org/grpc/reflection中的代码,将protoref...
如何解析协议缓冲区消息并创建 JSON 数据?
英文: How to parse protocol buffer message and create json out of it? 问题 这是我的最小.proto文件: syntax = "...
模块 XXX 找到了,但不包含包 XXX。
英文: Module XXX found, but does not contain package XXX 问题 对于不太熟悉Golang的问题,可能是我犯了一个愚蠢的错误...但是,我无论如何都无...
Protobuf Any解封装
英文: Protobuf Any unmarshal 问题 我有一个使用 Any 类型的原型 API。 message Document { DocumentMeta meta = 1; bytes ...
24