fix Pb2String

This commit is contained in:
wangchuxiao
2023-01-10 13:07:42 +08:00
parent 4f322254b0
commit 818ed107c6
2 changed files with 8 additions and 12 deletions
+7 -11
View File
@@ -137,21 +137,17 @@ func RemoveRepeatedStringInList(slc []string) []string {
}
func Pb2String(pb proto.Message) (string, error) {
//marshaler := jsonpb.Marshaler{
// OrigName: true,
// EnumsAsInts: false,
// EmitDefaults: false,
//}
//return marshaler.MarshalToString(pb)
bytes, err := proto.Marshal(pb)
if err != nil {
return "", err
marshaler := jsonpb.Marshaler{
OrigName: true,
EnumsAsInts: false,
EmitDefaults: false,
}
return string(bytes), nil
return marshaler.MarshalToString(pb)
}
func String2Pb(s string, pb proto.Message) error {
return proto.Unmarshal([]byte(s), pb)
err := jsonpb.UnmarshalString(s, pb)
return err
}
func Map2Pb(m map[string]string) (pb proto.Message, err error) {