首頁 > 後端開發 > Golang > 如何從 Protocol Buffer 結構中的 JSON 中刪除 `omitempty` 標籤?

如何從 Protocol Buffer 結構中的 JSON 中刪除 `omitempty` 標籤?

Mary-Kate Olsen
發布: 2024-12-14 16:45:11
原創
994 人瀏覽過

How to Remove `omitempty` Tags from JSON in Protocol Buffer Structs?

如何從Protocol Buffer 結構中產生的JSON 標籤中刪除Omitempty 標籤

在某些用例中,可能需要刪除為協議緩衝區結構產生的JSON 標籤中的omitempty 標籤。 Protocol buffers,特別是與 gRPC 一起使用時,是資料序列化和傳輸的強大工具。但是,包含 omitempty 標記可能會導致在 JSON 封送過程中遺漏預設值或空值,這可能是不可取的。

問題

使用時使用 JSON 代理的協定緩衝區,產生的結構可能在 JSON 標籤中包含 omitempty標籤,如範例所示:

message Status {
  int32 code = 1;
  string message = 2;
}
登入後複製

產生的結構體:

type Status struct {
  Code int32 `protobuf:"varint,1,opt,name=code" json:"code,omitempty"`
  Message string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
}
登入後複製

要從產生的結構體中刪除omitempty標籤,有兩種可能的方法:

  1. 使用grpc-gateway: 如果您使用grpc-gateway,您可以使用以下選項配置servemux:
gwmux := runtime.NewServeMux(runtime.WithMarshalerOption(runtime.MIMEWildcard, &runtime.JSONPb{OrigName: true, EmitDefaults: true}))
登入後複製
  1. 使用google.golang.org /protobuf/encoding/protojson: 對於 grpc-gateway 之外的應用程序,您可以使用google.golang.org/protobuf/encoding/protojson 套件而不是標準的編碼/json 進行封送。該套件提供了對編組過程的更好控制,包括發出預設值的能力:
func sendProtoMessage(resp proto.Message, w http.ResponseWriter) {
    w.Header().Set("Content-Type", "application/json; charset=utf-8")
    m := protojson.Marshaler{EmitDefaults: true}
    m.Marshal(w, resp) // You should check for errors here
}
登入後複製

透過實作其中一種方法,您可以有效地從為以下內容產生的JSON 標籤中刪除omitempty 標籤:您的協定緩衝區結構,確保在JSON 封送過程中包含預設值或空值。

以上是如何從 Protocol Buffer 結構中的 JSON 中刪除 `omitempty` 標籤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板