英文: Optional support in Proto3 for Go 问题 proto3(Go)不支持optional关键字。在proto3中,所有字段都是必需的,没有可选字段的概念。因此,无法...
如何获取FieldOption的值
英文: How to retrieve FieldOption value 问题 我有一个proto文件: extend google.protobuf.FieldOptions { string f...
从另一个项目导入.proto文件。
英文: Import .proto files from another project 问题 我想将一个在不同项目中定义的.proto文件导入到我的golang项目中,并在其中使用定义的消息类型。 ...
在proto中使用结构体数组
英文: Use Array of struct in proto 问题 我无法调用 gRPC 函数,因为类型不匹配。 我的 proto 文件: message Analytics { // 字段......
What is Marshal and unmarshal in Golang Proto?
英文: What is Marshal and unmarshal in Golang Proto? 问题 我理解我们需要使用marshal函数将对象序列化,使用unmarshal函数将其反序列化。然...
从父目录导入proto文件无法工作
英文: proto importing from parent directory does not work 问题 无法弄清楚如何在proto中进行导入,非常感谢您的帮助。 文件结构: proto ...
如何在Golang的proto结构中使用正则表达式?
英文: How to put regexp inside proto struct in golang? 问题 我有一个类似树状结构的数据,其中包含了一个字符串正则表达式,我希望能够将Go编译的*re...
Go proto: 文件未找到
英文: Go proto: File not found 问题 我一直在尝试运行以下命令: protoc -I ./interfaces/ -I ${GOPATH}/pkg/mod/github.co...
使用Envoy代理验证器和gogo protobuf进行Go验证。
英文: Go validation using envoy proxy validator and gogo protobuf 问题 我正在尝试编写一个插件来生成验证Go文件。该插件使用https:/...
GoLang Protobuf:如何在同一个 TCP 连接上发送多个消息?
英文: GoLang Protobuf: How to send multiple messages using the same tcp connection? 问题 我正在使用GoLang的pro...
5