소개
프로토콜 버퍼(Protobuf)는 언어입니다. - 구조화된 데이터를 직렬화하기 위한 중립적이고 플랫폼 중립적인 확장 가능한 메커니즘입니다. Protobuf로 작업할 때 *.pb.go 파일에 생성된 JSON 태그에서 생략 태그를 제거해야 할 수도 있습니다. 이 문서에서는 다양한 방법을 사용하여 이를 수행하는 방법을 살펴봅니다.
grpc-gateway 옵션
grpc-gateway를 활용하는 경우 ServeMux를 생성할 때 다음 옵션을 포함하면 다음이 보장됩니다. JSON 마샬링 중에 기본값이 존재합니다:
gwmux := runtime.NewServeMux(runtime.WithMarshalerOption(runtime.MIMEWildcard, &runtime.JSONPb{OrigName: true, EmitDefaults: true}))
protobuf 패키지
grpc-gateway 외부에서 google.golang.org/protobuf/encoding/protojson 패키지(현재 더 이상 사용되지 않는 github.com/golang/protobuf/jsonpb를 대체함)를 사용하여 프로토콜을 마샬링할 수 있습니다. 버퍼 메시지. EmitDefaults: true가 설정된 Marshaler 구조체를 활용하면 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) // Error handling omitted }
위 내용은 Protobuf가 생성한 JSON에서 'omitempty' 태그를 제거하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!