protoc生成的结构体有一些奇怪字段,直接存入MySQL会报错?
问题
Message user是这样的
message User {
int32 uid = 1;
string username = 2;
string password = 3;
}
生成的go代码是这样的:
type User struct {
Uid int32 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
我直接用上述User
存入MySQL会出错,因为XXX_NoUnkeyedLiteral
这些字段不存在,有个解决的办法是我手动改这个生成的代码,忽略这些字段,但不知大家是怎么做的?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然是写一个新的结构体啊,protoc生成的文件是不建议改的
我到SO上也问了下,似乎只能再建个struct对应table了