首页 文章 go protobuf中默认值被忽略的问题
本来用msgpack,解析的时候会根据数字大小生成对应的类型,比如一个客户端发来一个参数是100,本来是想定义一个int32来接收的,但是这个参数会被强行解析成int8,所有的参数都需要手动强行转换,实在太难受了。
最后还是还是回到一个强类型语言应该有的规矩,使用pb,定义结构,生成对应的struct。虽然代码没那么简洁,但是看到编写的时候还有代码提示都忍了。
但是在编写逻辑中突然又发现一个非常蛋疼的问题,一个id int32的参数,如果默认是0,直接就在pb序列化被忽略了,然后客户端是js,根本就拿不到,岂不是各种数据给客户端返回的时候如果要为0,客户端全部要判断0和undefine了。
不能忍,然后开始看go protobuf源码中是不是相关的接口,可以控制是否忽略默认值。
果然,我用的是golang的protobuf,在github.com/golang/protobuf/proto/table_marshal.go中有个这样函数
// typeMarshaler returns the sizer and marshaler of a given field.
// t is the type of the field.
// tags is the generated "protobuf" tag of the field.
// If nozero is true, zero value is not marshaled to the wire.
// If oneof is true, it is a oneof field.
func typeMarshaler(t reflect.Type, tags []string, nozero, oneof bool) (sizer, marshaler)
其中的 nozero,正好就是序列化是否忽略默认为0值的,然后全搜了一下修改typeMarshaler调用的地方都修改了false,测试,解决!