Protobuf消息没有实现protoreflect.ProtoMessage(ProtoReflect方法有指针接收器)
短信预约 -IT技能 免费直播动态提醒
php小编新一在这里为大家介绍一种问题:在Protobuf消息中,我们发现没有实现protoreflect.ProtoMessage接口的ProtoReflect方法,而该方法使用了指针接收器。这个问题可能会导致一些困惑和不便。在文章中,我们将深入探讨这个问题的原因和可能的解决方案,以帮助大家更好地理解和应对这个问题。让我们一起来了解吧!
问题内容
我有一条 protobuf 消息导入 "google/protobuf/any.proto"
:
message mintrecord {
...
google.protobuf.any data = 11;
...
}
我正在尝试使用anypb序列化data
字段内的另一个protobuf:
data, err := anypb.new(protobuf.lootcrateprize{
items: &protobuf.inventory{items: items},
roll: fmt.sprintf("%f", roll),
})
if err != nil {
log.println("[lootbox] err: error marshalling lootcrate prize data into mintrec", err)
} else {
mintrecordproto.data = data
}
编译后出现以下错误:
cannot use protobuf.lootcrateprize{…} (value of type protobuf.lootcrateprize) as type protoreflect.protomessage in argument to anypb.new:
protobuf.lootcrateprize does not implement protoreflect.protomessage (protoreflect method has pointer receiver)
根据文档,我在这里没有做任何异常的事情。我该如何解决这个问题?
这是我尝试序列化并存储在 data
字段内的 protobuf:
lootcrate.proto:
syntax = "proto3";
package protobuf;
option go_package = "protobuf/";
import "protobuf/inventory.proto";
import "protobuf/flowerdbservice.proto";
message LootcratePrize {
Inventory items = 1;
repeated NFT flowers = 2;
string roll = 3;
}
解决方法
sarath sadasivan pillai 是正确的。
将您的代码更改为:
data, err := anypb.New(&protobuf.LootcratePrize{
Items: &protobuf.Inventory{Items: items},
Roll: fmt.Sprintf("%f", roll),
})
以上就是Protobuf消息没有实现protoreflect.ProtoMessage(ProtoReflect方法有指针接收器)的详细内容,更多请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341